Connects Claude to the US National Weather Service API without needing authentication. Runs through Pipeworx's gateway infrastructure, which also offers access to 250+ other data sources if you need them. The server supports their ask_pipeworx natural language interface, so you can ask weather questions in plain English instead of calling specific tools. Useful when you're building assistants that need current US weather data, forecasts, or NWS alerts and don't want to manage API keys or deal with rate limiting yourself. Available via streamable HTTP, so setup is just dropping a URL into your MCP client config.
NWS MCP — US National Weather Service (no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nws": {
"url": "https://gateway.pipeworx.io/nws/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nws data" })
The gateway picks the right tool and fills the arguments automatically.
MIT