ukflood_station_readings
Pack: uk-flood-monitoring · Endpoint: https://gateway.pipeworx.io/uk-flood-monitoring/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ukflood_station_readings for the schema, then POST the same URL with its arguments for the data.
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
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
station_id | string | yes | EA station reference, e.g. “5380TH”. Get one from ukflood_stations_near. |
since | string | no | Optional ISO-8601 timestamp, e.g. “2026-09-16T00:00:00Z”. When given, returns every reading since then instead of only the latest. |
limit | number | no | Max readings to return (default 50, max 500). Only applies with since. |
Example call
Arguments
{
"station_id": "5380TH"
}
curl
curl -X POST https://gateway.pipeworx.io/uk-flood-monitoring/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ukflood_station_readings","arguments":{"station_id":"5380TH"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ukflood_station_readings', {
"station_id": "5380TH"
});
More examples
{
"station_id": "5380TH",
"since": "2026-09-16T00:00:00Z",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-flood-monitoring": {
"url": "https://gateway.pipeworx.io/uk-flood-monitoring/mcp"
}
}
}
See Getting Started for client-specific install steps.