event

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

Fetch full detail for a single GDACS disaster event by event_type (EQ/TC/FL/VO/DR/WF) and event_id; optionally narrow to a specific episode_id. Returns event metadata, impact estimates, and geometry.

Parameters

NameTypeRequiredDescription
event_typestringyes
event_idstringyes
episode_idstringno

Example call

Arguments

{
  "event_type": "EQ",
  "event_id": "12345"
}

curl

curl -X POST https://gateway.pipeworx.io/gdacs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"event","arguments":{"event_type":"EQ","event_id":"12345"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('event', {
  "event_type": "EQ",
  "event_id": "12345"
});

More examples

{
  "event_type": "FL",
  "event_id": "67890",
  "episode_id": "ep001"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Single event detail from GDACS API"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026