plan_journey

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

Plan a journey across London transport. from/to may be stop names, postcodes, or “lat,lon” coordinates. Returns journey options (legs, durations, modes). If a location is ambiguous, the API returns disambiguation options instead of journeys — refine the input or use a naptanId/coords.

Parameters

NameTypeRequiredDescription
fromstringyesOrigin: stop name, postcode, or “lat,lon”.
tostringyesDestination: stop name, postcode, or “lat,lon”.

Example call

Arguments

{
  "from": "Oxford Circus",
  "to": "Tower Bridge"
}

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":"plan_journey","arguments":{"from":"Oxford Circus","to":"Tower Bridge"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('plan_journey', {
  "from": "Oxford Circus",
  "to": "Tower Bridge"
});

More examples

{
  "from": "SW1A 1AA",
  "to": "51.5074,-0.1278"
}

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