get_hourly_forecast
Pack: nws · Endpoint: https://gateway.pipeworx.io/nws/mcp
Get the hourly NWS forecast for a US lat/lon (~168 hours). Useful for short-term planning, severe-weather windows, or precipitation timing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | US latitude |
longitude | number | yes | US longitude |
max_hours | number | no | Cap hours returned (default 24) |
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_hourly_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.