arrivals
Pack: tfl · Endpoint: https://gateway.pipeworx.io/tfl/mcp
Real-time predicted arrivals at a stop. Pass the naptanId from stop_search (e.g. “940GZZLUOXC”). Results are sorted by timeToStation (seconds away), nearest first.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
naptanId | string | yes | Stop NaPTAN id, obtained from stop_search. |
Example call
Arguments
{
"naptanId": "940GZZLUOXC"
}
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":"arrivals","arguments":{"naptanId":"940GZZLUOXC"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('arrivals', {
"naptanId": "940GZZLUOXC"
});
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.