MCP Catalogs
Home

mcp-fetch-weather

by IsseiSuar·0·Score 27

A minimalist MCP server providing weather fetching functionality using Open-Meteo API.

ai-llmweatherother
0
Forks
0
Open issues
11 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server implements a simple weather tool that fetches current weather data from the Open-Meteo API. It's designed as a basic example for learning the Model Context Protocol and demonstrates how to connect LLMs with external API-based tools. The implementation uses TypeScript with the official MCP SDK and zod for validation.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Enabling weather queries in LLM applications through MCP protocol
you:Serving as a reference implementation for MCP tool development
you:Demonstrating external API integration with MCP servers
you:What weather data does this tool provide?
you:Can I use this server commercially?

When to choose this

Choose this for learning MCP implementation or as a starting point when building simple weather-integrated AI applications.

When NOT to choose this

Don't choose for production use as it lacks advanced features like error handling, authentication, and comprehensive weather data options.

Tools this server exposes

1 tool extracted from the README
  • fetch-weather

    Obtain the current weather of a city

Comparable tools

mcp-openweatherweatherapi-mcpweb-mcp

Installation

git clone git@github.com:IsseiSuar/mcp-fetch-weather.git
cd mcp-fetch-weather
pnpm install  # or npm install

For Claude Desktop, add this to your configuration:

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": ["path/to/mcp-fetch-weather/dist/index.js"]
    }
  }
}

FAQ

What weather data does this tool provide?
The fetch-weather tool provides current weather conditions including temperature, humidity, wind speed, and other basic meteorological data from the Open-Meteo API.
Can I use this server commercially?
The project appears to be a simple example implementation, so check the license for specific commercial use terms.

Compare mcp-fetch-weather with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.