Weather MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Weather MCP ServerGet the forecast for Denver, Colorado."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Weather MCP Server
A demo Model Context Protocol server that gives AI assistants (Claude, Copilot, Cursor, etc.) access to live US weather data via the free National Weather Service API.
Tools exposed
Tool | Description |
| 3-period forecast for any US lat/long |
| Active weather alerts for a US state |
| Hourly forecast for next 12 hours |
No API key required — NWS is completely free.
Related MCP server: Weather MCP Server
Local development
1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh2. Install dependencies
uv pip install "mcp[cli]>=1.0.0" "httpx>=0.27.0"3. Run with MCP Inspector (for testing)
uv run mcp dev weather_server.pyOpens a browser UI to call your tools manually.
4. Connect to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"weather": {
"command": "python",
"args": ["/absolute/path/to/weather_server.py"]
}
}
}Restart Claude Desktop. You'll see a 🔨 tools icon in chat.
Deploy to Fly.io
1. Install flyctl
curl -L https://fly.io/install.sh | sh2. Sign up / log in
fly auth signup # or: fly auth login3. Pick a unique app name
Edit fly.toml and change app = "weather-mcp-demo" to something unique.
4. Launch
fly launch --no-deploy # reads fly.toml, provisions the app
fly deploy # builds Docker image and deploysYour server will be live at:
https://<your-app-name>.fly.dev/mcp5. Connect Claude Desktop to the hosted server
{
"mcpServers": {
"weather": {
"url": "https://<your-app-name>.fly.dev/mcp"
}
}
}Useful Fly commands
fly logs # tail live logs
fly status # check machine health
fly deploy # redeploy after code changes
fly scale count 1 # ensure at least 1 machine runningExample prompts to try
"What's the weather forecast for New York City?" → lat: 40.71, lon: -74.00
"Any weather alerts in Texas right now?"
"Give me the hourly forecast for Miami." → lat: 25.77, lon: -80.19
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that provides weather information like forecasts and alerts for US locations using the National Weather Service API.Last updated5
- FlicenseBqualityDmaintenanceAn MCP server that provides weather information and alerts for US locations using the National Weather Service API, enabling retrieval of weather forecasts and active weather alerts.Last updated2
- Alicense-qualityBmaintenanceAn MCP server providing AI-powered weather tools via Google Generative AI, enabling real-time weather data retrieval through natural language queries.Last updatedMIT
- Alicense-qualityDmaintenanceAn MCP server that enables AI assistants to call weather tools, read resources, and use prompt templates for live weather data integration.Last updated1,967MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/azwawy/mymcp1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server