Uk Flood Monitoring
liveGovernmentEnvironmentUK Environment Agency real-time flood-monitoring MCP.
Tools
ukflood_warningsFlood warnings and flood alerts currently in force across England, from the Environment Agency. AUTHORITATIVE for "is there a flood warning in <English place>" — this is the feed the government broadc
No parameters required.
Try it
ukflood_stations_nearEnvironment Agency river, groundwater, tidal and rainfall monitoring stations near a point in England, with the measures each one reports. Use this to find the station id you then pass to ukflood_stat
No parameters required.
Try it
ukflood_station_readingsTelemetry readings from one Environment Agency monitoring station — water level in metres, river flow in m3/s, or rainfall in mm, typically every 15 minutes. AUTHORITATIVE for "how high is the <Englis
No parameters required.
Try it
ukflood_areasThe named flood areas the Environment Agency issues warnings for — the geography behind a warning code. Each area has an fwdCode (e.g. "053FWFPUWI06"), a plain description of the land it covers, its c
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/uk-flood-monitoring/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/uk-flood-monitoring/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ukflood_warnings","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ukflood_warnings", {});// Or ask in plain English:
const answer = await px.ask("uk environment agency real-time flood-monitoring mcp");