Wraps the Open-Meteo Flood API so you can query flood forecasting and historical flood data through MCP without dealing with authentication. Part of the Pipeworx gateway ecosystem, which means you can either use this standalone server or access it alongside 673+ other data sources through their unified gateway. The ask_pipeworx feature is interesting: instead of calling tools with specific parameters, you can ask questions in plain English and it routes to the right endpoint automatically. Free to use, no API keys required. Useful when you're building climate risk tools, emergency response systems, or anything that needs flood predictions based on river discharge forecasts.
Flood MCP — wraps Open-Meteo Flood API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"flood": {
"url": "https://gateway.pipeworx.io/flood/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 Flood data" })
The gateway picks the right tool and fills the arguments automatically.
MIT