Uk Flood Monitoring

liveGovernmentEnvironment

UK Environment Agency real-time flood-monitoring MCP.

4tools
0msauth
free tier50 calls/day

Tools

ukflood_warnings

Flood 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_near

Environment 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_readings

Telemetry 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_areas

The 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.

List available tools
bash
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"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ukflood_warnings", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk environment agency real-time flood-monitoring mcp");