weather_mcp_server
Provides real-time and historical weather data for any city worldwide, including forecasts, air quality, and marine conditions, using the free Open-Meteo API.
README
🌤️ Weather MCP Server
A fully-featured MCP (Model Context Protocol) server providing real-time and historical weather data for any city worldwide. Powered by the free Open-Meteo API — no API key required.
Features
| Tool | Description |
|---|---|
weather_current |
Real-time weather conditions (temp, humidity, wind, UV, visibility) |
weather_forecast |
Multi-day forecast up to 16 days, with optional hourly breakdown |
weather_historical |
Historical daily data going back to 1940 |
weather_air_quality |
PM2.5, PM10, ozone, NO₂, CO, and US/EU AQI indices |
weather_marine |
Wave heights, periods, and ocean wind forecasts |
weather_search_location |
Geocode and disambiguate city names |
Quick Start
Prerequisites
- Node.js 18+
- npm
Installation
git clone <repo-url>
cd weather-mcp-server
npm install
npm run build
Running the Server
stdio mode (for Claude Desktop, Claude Code, etc.):
npm start
HTTP mode (for remote/web integrations):
TRANSPORT=http npm start
# Server runs on http://localhost:3000/mcp
# Health check: http://localhost:3000/health
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"weather": {
"command": "node",
"args": ["/path/to/weather-mcp-server/dist/index.js"]
}
}
}
Example Usage
Once connected, Claude can answer questions like:
- "What's the weather in Tokyo right now?"
- "Will it rain in London this weekend?"
- "How hot was it in Phoenix in July 2023?"
- "What's the air quality in Beijing today?"
- "What are the surf conditions in Biarritz this week?"
- "Show me a 2-week forecast for Dubai in Fahrenheit"
Tool Reference
weather_current
{
"location": "Paris",
"temperature_unit": "celsius",
"wind_speed_unit": "kmh"
}
weather_forecast
{
"location": "New York",
"days": 7,
"include_hourly": false,
"temperature_unit": "fahrenheit"
}
weather_historical
{
"location": "Sydney",
"start_date": "2024-01-01",
"end_date": "2024-01-31"
}
weather_air_quality
{
"location": "Delhi"
}
weather_marine
{
"location": "Miami",
"days": 3
}
weather_search_location
{
"query": "Springfield",
"count": 5
}
Project Structure
weather-mcp-server/
├── src/
│ ├── index.ts # Server entry point & transport setup
│ ├── constants.ts # WMO codes, API URLs, limits
│ ├── types.ts # TypeScript interfaces
│ ├── schemas/
│ │ └── index.ts # Zod validation schemas
│ ├── services/
│ │ └── weatherApi.ts # API client & shared utilities
│ └── tools/
│ ├── currentWeather.ts
│ ├── forecast.ts
│ ├── historical.ts
│ ├── airQuality.ts
│ ├── marine.ts
│ └── geocoding.ts
└── dist/ # Compiled output (run `npm run build`)
Data Sources
All data comes from Open-Meteo:
- Weather & Forecast:
api.open-meteo.com - Historical Archive:
archive-api.open-meteo.com - Air Quality:
air-quality-api.open-meteo.com - Marine:
marine-api.open-meteo.com - Geocoding:
geocoding-api.open-meteo.com
Free tier supports unlimited non-commercial use.
License
MIT
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.
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.
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.
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.