mcp-fetch-weather
by IsseiSuar·★ 0·Score 27
A minimalist MCP server providing weather fetching functionality using Open-Meteo API.
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:
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 READMEfetch-weatherObtain the current weather of a city
Comparable tools
Installation
git clone git@github.com:IsseiSuar/mcp-fetch-weather.git
cd mcp-fetch-weather
pnpm install # or npm installFor 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
Last updated · Auto-generated from public README + GitHub signals.