weather-mcp-server
Provides weather forecasts and geocoding lookup using free Open-Meteo APIs, enabling LLMs to query real-time weather and multi-day forecasts for any location.
README
Weather MCP Server
A Model Context Protocol (MCP) server that provides weather forecasts and geocoding lookup using the free, keyless Open-Meteo APIs. This server enables LLMs (like Claude, Gemini, and GPT) to query real-time weather information and multi-day forecasts for any city or location in the world.
Features
- Get Current Weather: Detailed current conditions including condition description, temperature, apparent temperature (feels like), humidity, wind speed, and precipitation details.
- Multi-day Weather Forecast: Standard 1-7 day forecast with conditions, daily min/max temperatures, and total expected precipitation.
- Keyless & Free: Powered by the open-source Open-Meteo APIs, requiring no API keys or subscription signups.
- Fuzzy Geocoding: Automatically resolves location names (e.g., "Paris", "New York", "London") to geographic coordinates and timezones.
Installation & Usage
You can run this server directly from npm using npx, or install it globally.
Method 1: Using npx (Recommended)
To run the server without installation:
npx -y weather-mcp-server
Method 2: Global Installation
Install the package globally:
npm install -g weather-mcp-server
Then run it:
weather-mcp-server
Configuration for MCP Clients
1. Claude Desktop
To add the Weather MCP Server to Claude Desktop, edit your claude_desktop_config.json file.
- Windows path:
%APPDATA%\Claude\claude_desktop_config.json - macOS path:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the server to the mcpServers list:
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"weather-mcp-server"
]
}
}
}
2. Cursor
Cursor supports custom MCP servers directly from the GUI:
- Open Cursor Settings (
Ctrl + ,orCmd + ,). - Go to Features -> MCP.
- Click + Add New MCP Server.
- Fill in:
- Name:
Weather - Type:
command - Command:
npx -y weather-mcp-server
- Name:
- Click Save.
Tool Documentation
This server exposes a single tool called get_weather.
get_weather
Gets the current weather and daily forecast for a given location.
Arguments:
location(string, required): The city, region, or location name (e.g."Tokyo","Paris","Chicago, IL").days(number, optional, default:3): Number of forecast days to return (integer between1and7).
Example Request:
{
"name": "get_weather",
"arguments": {
"location": "Paris",
"days": 3
}
}
Development & Building
If you want to run the server locally from the source code, follow these steps:
- Clone or download the repository.
- Install dependencies:
npm install - Build the TypeScript code:
npm run build - Run locally:
npm start
To link and test the local version in Claude Desktop, point the configuration directly to the local path:
{
"mcpServers": {
"weather-local": {
"command": "node",
"args": [
"C:/path/to/your/project/dist/index.js"
]
}
}
}
License
ISC License. Feel free to use and adapt this server.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.