entur_departures
Pack: entur · Endpoint: https://gateway.pipeworx.io/entur/mcp
Real-time departures board for any public-transport stop in Norway — train, tram, metro, bus, and ferry departures for Oslo, Bergen, Trondheim, Stavanger and every other Norwegian stop, from Entur (the national journey-planning authority covering Vy, Flytoget, Ruter, Skyss, AtB, formerly NSB). Returns line, destination, aimed vs expected time, delay in minutes, platform/quay, and realtime flag. Example: entur_departures({ stop: “Oslo S”, mode: “rail” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
stop | string | yes | Stop or station name, e.g. “Oslo S”, “Bergen stasjon”, “Trondheim S”, “Jernbanetorget” — or a raw NSR id like “NSR:StopPlace:59872” |
mode | string | no | Optional transport-mode filter. “water” = ferry/boat, “rail” = train. |
limit | number | no | Max departures to return, 1-50 (default 10) |
Example call
Arguments
{
"stop": "Oslo S"
}
curl
curl -X POST https://gateway.pipeworx.io/entur/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"entur_departures","arguments":{"stop":"Oslo S"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('entur_departures', {
"stop": "Oslo S"
});
More examples
{
"stop": "Bergen stasjon",
"mode": "rail",
"limit": 15
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"entur": {
"url": "https://gateway.pipeworx.io/entur/mcp"
}
}
}
See Getting Started for client-specific install steps.