line_status

Pack: tfl · Endpoint: https://gateway.pipeworx.io/tfl/mcp

Current service status for London transport lines. Pass either a comma-separated list of modes (e.g. “tube,dlr”) OR a specific lineId (e.g. “victoria”, “central”). Returns each line with lineStatuses + statusSeverityDescription (e.g. “Good Service”, “Minor Delays”).

Parameters

NameTypeRequiredDescription
modesstringno
lineIdstringnoSpecific line id, e.g. “victoria”, “central”, “elizabeth”. Takes precedence over modes.

Example call

Arguments

{
  "modes": "tube,dlr"
}

curl

curl -X POST https://gateway.pipeworx.io/tfl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"line_status","arguments":{"modes":"tube,dlr"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('line_status', {
  "modes": "tube,dlr"
});

More examples

{
  "lineId": "victoria"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tfl": {
      "url": "https://gateway.pipeworx.io/tfl/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026