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 Serverwhat's the weather in Austin, TX?"
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 Model Context Protocol (MCP) server that provides real-time weather alerts and forecasts using the National Weather Service (NWS) API. This server is built with Python and fastmcp, and is designed to integrate seamlessly with Claude Desktop.
Features
This server exposes two main tools:
get_alerts(state: str): Retrieves active weather alerts for a specific US state (e.g., "TX", "CA").Returns a list of alerts including event type, severity, description, and instructions.
get_forecast(latitude: float, longitude: float): Fetches the weather forecast for a given location.Automatically resolves the NWS grid point for the coordinates.
Returns a detailed forecast including temperature, wind speed, and detailed descriptions for upcoming periods.
Related MCP server: Weather MCP Server
Prerequisites
Docker (required)
Installation & Usage
1. Build the Docker Image
docker build -t weather-mcp .2. Configure Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"weather": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"weather-mcp"
]
}
}
}Development
To test your changes during development, rebuild and run the container manually:
# Rebuild the image
docker build -t weather-mcp .
# Run the container (interactive mode to test stdin/stdout)
docker run -i --rm weather-mcpYou can then paste JSON-RPC messages (if you know them) or simply ensure the container starts without errors.
To verify a specific tool execution (e.g., getting alerts), you can pipe a request into the container:
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "get_alerts", "arguments": {"state": "TX"}}}' | docker run -i --rm weather-mcpTechnologies
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 tools to fetch weather alerts for US states and forecasts based on latitude/longitude coordinates using the US National Weather Service API.Last updated2971MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that provides current weather forecasts for specific locations and active weather alerts for US states.Last updated2
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI models to fetch weather alerts and detailed forecasts for US locations using the National Weather Service API.Last updated97GPL 3.0
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server that provides real-time weather alerts and forecasts from the US National Weather Service.Last updated
Related MCP Connectors
NOAA Weather MCP — National Weather Service forecasts and alerts
Hosted weather data MCP for discovery, validation, and OAuth-protected GribStream queries.
Get US weather forecasts, active alerts, and current observations.
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/Kennexcorp/weather_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server