dbrail_arrivals

Pack: db-rail · Endpoint: https://gateway.pipeworx.io/db-rail/mcp

Live arrivals board for a German / European station. Pass a station NAME (“München Hbf”) or a stop id from dbrail_locations. Returns upcoming arrivals with line/train number, origin, scheduled and real-time arrival, delay in minutes, platform/track, and operator. Keyless, real-time where the operator publishes it.

Parameters

NameTypeRequiredDescription
idstringyesStation name (“München Hbf”) or stop id from dbrail_locations.
whenstringnoISO date/time to start the board from. Defaults to now.
modestringnoFilter by transport mode. Pass “rail” for trains only (high-speed, long-distance, night, regional) — recommended at big stations, where trams/buses otherwise dominate the board. Or pass explicit MOTIS modes, comma-separated: HIGHSPEED_RAIL, LONG_DISTANCE, REGIONAL_RAIL, SUBURBAN, SUBWAY, TRAM, BUS, COACH, FERRY.
resultsnumbernoMax arrivals to return (default 15, max 50).

Example call

Arguments

{
  "id": "München Hbf"
}

curl

curl -X POST https://gateway.pipeworx.io/db-rail/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dbrail_arrivals","arguments":{"id":"München Hbf"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dbrail_arrivals', {
  "id": "München Hbf"
});

More examples

{
  "id": "Zürich HB",
  "mode": "rail",
  "when": "2026-07-25T18:00:00Z"
}

Connect

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

{
  "mcpServers": {
    "db-rail": {
      "url": "https://gateway.pipeworx.io/db-rail/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026