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 at right now”. Pass a station reference from ukflood_stations_near, e.g. “5380TH” (Walthamstow, Low Hall, River Lee). Defaults to the latest reading for every measure at the station; pass since to get a time series.

Parameters

NameTypeRequiredDescription
station_idstringyesEA station reference, e.g. “5380TH”. Get one from ukflood_stations_near.
sincestringnoOptional ISO-8601 timestamp, e.g. “2026-09-16T00:00:00Z”. When given, returns every reading since then instead of only the latest.
limitnumbernoMax 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.

Regenerated from source · build September 18, 2026