Connects Claude to the Global Disaster Alert and Coordination System, exposing current earthquake, tropical cyclone, flood, volcano, drought, and wildfire alerts worldwide. You get four tools: list all active events, pull details on a single event by ID, fetch current alerts as GeoJSON for mapping, or grab the raw RSS XML feed. Part of the Pipeworx gateway, so you can either connect to this specific feed or plug into their full network of 673+ data sources. Useful when you need real-time natural disaster intelligence in a conversational interface, whether for monitoring dashboards, emergency response workflows, or automated alert systems.
GDACS MCP — Global Disaster Alert and Coordination System.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
events | List disaster events. |
event | Single event detail. |
geojson | Current alerts as GeoJSON. |
rss | Raw RSS feed (XML text). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"gdacs": {
"url": "https://gateway.pipeworx.io/gdacs/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Gdacs data" })
The gateway picks the right tool and fills the arguments automatically.
MIT