get_forecast
Pack: nws · Endpoint: https://gateway.pipeworx.io/nws/mcp
Get the 7-day NWS forecast for a US lat/lon. Returns named periods (e.g., “Tonight”, “Wednesday”) with high/low temperature, wind, and a short text forecast. US locations only.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | US latitude |
longitude | number | yes | US longitude |
Example call
curl -X POST https://gateway.pipeworx.io/nws/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_forecast","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nws": {
"url": "https://gateway.pipeworx.io/nws/mcp"
}
}
}
See Getting Started for client-specific install steps.