Hurricanes (NHC)
live WeatherActive tropical cyclones from the US National Hurricane Center — name, Saffir-Simpson category, position, winds, movement, and official advisory/forecast-cone links. Atlantic + Pacific. Keyless.
Tools
active_storms List currently active tropical cyclones (tropical storms / hurricanes) from the US National Hurricane Center — name, classification, Saffir-Simpson category, position, max winds, pressure, movement, a
No parameters required.
Try it
storm_details Full details for one active storm by id (e.g. "al052026") or name (e.g. "Douglas"), including all advisory/forecast/cone/surge product links. Keyless.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/hurricanes/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/hurricanes/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"active_storms","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("active_storms", {}); // Or ask in plain English:
const answer = await px.ask("active tropical cyclones from the us national hurricane center — name, saffir-simpson category, position, winds, movement, and official advisory/forecast-cone links");