geojson
Pack: gdacs · Endpoint: https://gateway.pipeworx.io/gdacs/mcp
Current alerts as GeoJSON.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
event_type | string | no | |
alert_level | string | no |
Example call
Arguments
{
"event_type": "VO",
"alert_level": "Orange"
}
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":"geojson","arguments":{"event_type":"VO","alert_level":"Orange"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('geojson', {
"event_type": "VO",
"alert_level": "Orange"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Current alerts as GeoJSON 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.