Weather MCP
Provides 12 weather tools for conditions, forecasts, alerts, model imagery, radar, and 205 meteorological calculations, enabling weather data access and analysis through Claude Code.
README
Weather MCP
MCP server with 12 weather tools — conditions, forecasts, alerts, NWP model imagery, NEXRAD radar, and 205 meteorological calculations. Built for Claude Code.
Data tools work immediately with just requests. Image rendering and calculations use optional Rust-backed packages for professional-grade output.
Quick Start
git clone https://github.com/FahrenheitResearch/weather-mcp
cd weather-mcp
pip install requests mcp
Add to your Claude Code MCP config (~/.claude/settings.json):
{
"mcpServers": {
"weather": {
"command": "python",
"args": ["/full/path/to/weather-mcp/server.py"]
}
}
}
Restart Claude Code. You now have 7 weather data tools available immediately.
Tools
Data (Python — always available)
| Tool | What it does |
|---|---|
wx_conditions |
Current obs: temperature, wind, sky, dewpoint |
wx_forecast |
NWS 7-day or hourly forecast |
wx_alerts |
Active warnings/watches with GeoJSON polygons for map overlays |
wx_metar |
Raw/decoded METAR for any ICAO station |
wx_brief |
Conditions + forecast + alerts in one call |
wx_global |
Non-US locations via Open-Meteo |
wx_severe |
SPC Day 1 outlook + active watches |
Images (Rust — optional)
| Tool | What it does |
|---|---|
wx_model_image |
NWP field rendered as PNG — 22+ products, 3 models, batch support |
wx_radar_image |
NEXRAD Level 2 reflectivity (1024px, 200km, dark background) |
wx_storm_image |
Radar with storm cell analysis |
Calculations (Rust — optional)
| Tool | What it does |
|---|---|
wx_calc |
Any of 205 meteorological functions (dewpoint, CAPE, LCL, Fosberg FWI, etc.) |
wx_sounding |
Model sounding at a point — 40 levels + all derived parameters |
Optional: Image & Calculation Packages
# Model imagery + soundings
pip install metrust cfrust rusbie rustweather
# Radar (build from source)
cd /path/to/rustdar
cargo build --release --bin radar-render
# Set path if not at ~/rustdar/
export RADAR_RENDER_PATH=/path/to/radar-render
What Can I Build With This?
Just tell Claude Code what you want. Examples:
- "Build me a fire weather dashboard with Red Flag Warning overlays" — Claude Code will use
wx_alerts(event_type="Red Flag Warning")and overlay the GeoJSON polygons on your map - "Show me the HRRR CAPE forecast for Oklahoma" —
wx_model_image(var="cape", lat=35.5, lon=-97.5, radius_km=300) - "Calculate the Fosberg Fire Weather Index for 95°F, 8% RH, 25 mph wind" —
wx_calc(function="fosberg_fire_weather_index", ...) - "What's the severe weather outlook?" —
wx_severe() - "Build a weather app with current conditions and radar" — Claude Code chains
wx_conditions+wx_radar_image
Credits
- Color tables: Solarpower07
- Meteorological calculations: metrust — 205 functions verified against MetPy
- GRIB decoding: cfrust (pure Rust, replaces eccodes)
- NWP downloads: rusbie (byte-range .idx filtering)
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.