Weather MCP Demo
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 DemoWhat's the current weather in Chicago?"
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 demo (Python)
This project demonstrates the complete flow requested in the onboarding task:
User query -> sample agent / Codex -> MCP tool -> REST API -> 4-field responseIt contains three sample REST APIs backed by live US National Weather Service (NWS) data and three matching MCP tools:
User intent | REST API | MCP tool |
Current weather |
|
|
1-7 day forecast |
|
|
Weather warnings |
|
|
Every API returns exactly four top-level attributes:
{
"id": "demo-1",
"location": "Chicago",
"status": "success",
"data": {}
}The MCP input schemas intentionally mirror the API query parameters. FastMCP derives JSON Schema from the Python function type hints and validates tool calls.
1. Install
Python 3.11+ is required.
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"Related MCP server: Weather MCP Server
2. Start the sample APIs
Keep this terminal running:
source .venv/bin/activate
python -m uvicorn weather_mcp.api:app --host 127.0.0.1 --port 8000Useful pages:
Swagger UI: http://127.0.0.1:8000/docs
OpenAPI JSON: http://127.0.0.1:8000/openapi.json
Try an API directly:
curl "http://127.0.0.1:8000/api/weather/current?id=demo-1&city=Chicago"3. Run the sample agent
In a second terminal:
source .venv/bin/activate
python -m weather_mcp.agent "What is the current weather in Chicago? id: demo-1"
python -m weather_mcp.agent "Give me the 5 day forecast for New York. id: demo-2"
python -m weather_mcp.agent "Are there any severe weather alerts in Miami? id: demo-3"The agent is deliberately deterministic and local, so it needs no model API key. It still uses a real MCP client session: it launches the MCP server, lists its tools, selects one from the user intent, and invokes it over stdio.
4. Connect it to Codex
First start the REST API as shown above. This checkout already includes
.codex/config.toml with the correct absolute paths. Restart/open a new Codex
task in this trusted project so Codex loads the weather MCP server.
If the project is moved or cloned elsewhere, copy .codex/config.toml.example
to .codex/config.toml and replace both absolute paths.
Example prompts:
"Use the weather tool to get current conditions in Chicago. ID: codex-1."
"Get the 4 day forecast for New York. ID: codex-2."
"Are there any active weather alerts in Miami? ID: codex-3."
Codex acts as the intelligent agent/host: it reads the tool names, descriptions, and input schemas exposed by this server and chooses the appropriate MCP tool.
5. Test
source .venv/bin/activate
pytest -qDesign notes
weather_mcp/api.pyis the API layer.weather_mcp/server.pyis the MCP connector sitting on top of the APIs.weather_mcp/agent.pyis a minimal local agent and MCP client.weather_mcp/models.pydefines the stable four-field response contract.Weather and alert data comes from
api.weather.gov.City names are geocoded through Open-Meteo's geocoding endpoint because NWS accepts coordinates rather than city names.
NWS covers US locations only. Prefer
City, Statewhen a name is ambiguous.Set
NWS_USER_AGENTto an application name and contact address in production.NWS requests can occasionally fail or time out; the REST layer maps upstream failures to clear
502/503responses and MCP returns them as tool errors.MCP uses stdio locally; stdout is reserved for protocol traffic.
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
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides AI agents with tools to retrieve weather alerts and detailed forecasts for US locations using the National Weather Service API.Last updated21051GPL 3.0
- 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
- Flicense-qualityCmaintenanceA demo MCP server that provides AI assistants access to live US weather data via the free National Weather Service API, offering forecast and alert tools without requiring an API key.Last updated
- Alicense-qualityCmaintenanceAn MCP server that provides access to environmental weather data for AI agents through the National Weather Service (NWS) API, enabling location management, weather observations, alerts, and HeatRisk guidance.Last updated1MIT
Related MCP Connectors
OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)
Pocket Agent (aipocketagent.com) MCP server — read tools for personas, apps, and product info.
MCP server exposing the Backtest360 engine API as tools for AI agents.
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/huanhuang1/weather-mcp-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server