storm_reports

Pack: noaa-spc · Endpoint: https://gateway.pipeworx.io/noaa-spc/mcp

Fetch NOAA SPC preliminary storm reports CSV for a given date (YYMMDD, default today UTC) filtered by kind: tornado, wind, hail, or filtered (combined). Returns raw CSV with time, location, magnitude, and remarks.

Parameters

NameTypeRequiredDescription
datestringnoYYMMDD (default today UTC)
kindstringnotornado | wind | hail | filtered (default)

Example call

Arguments

{
  "date": "250115",
  "kind": "tornado"
}

curl

curl -X POST https://gateway.pipeworx.io/noaa-spc/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"storm_reports","arguments":{"date":"250115","kind":"tornado"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('storm_reports', {
  "date": "250115",
  "kind": "tornado"
});

More examples

{
  "kind": "hail"
}

Response shape

Always returns: format, body

FieldTypeDescription
formatstringResponse format
bodystringCSV data of preliminary storm reports
Full JSON Schema
{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "csv"
      ],
      "description": "Response format"
    },
    "body": {
      "type": "string",
      "description": "CSV data of preliminary storm reports"
    }
  },
  "required": [
    "format",
    "body"
  ]
}

Connect

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

{
  "mcpServers": {
    "noaa-spc": {
      "url": "https://gateway.pipeworx.io/noaa-spc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026