storm_details

Pack: hurricanes · Endpoint: https://gateway.pipeworx.io/hurricanes/mcp

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.

Parameters

NameTypeRequiredDescription
stormstringyesStorm id or name.

Example call

Arguments

{
  "storm": "al052026"
}

curl

curl -X POST https://gateway.pipeworx.io/hurricanes/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"storm_details","arguments":{"storm":"al052026"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('storm_details', {
  "storm": "al052026"
});

More examples

{
  "storm": "Douglas"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hurricanes": {
      "url": "https://gateway.pipeworx.io/hurricanes/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026