entur_journey
Pack: entur · Endpoint: https://gateway.pipeworx.io/entur/mcp
Entur journey planner — plan a public-transport trip between any two places in Norway (Oslo to Bergen train, airport connections, city tram/metro/bus routes, ferries). Returns door-to-door itineraries with legs (mode, line, operator like Vy or Flytoget, aimed and expected times), total duration, transfer count, and walking distance. Example: entur_journey({ from: “Oslo S”, to: “Bergen stasjon” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string | yes | Origin — place/station name or NSR id, e.g. “Oslo S” |
to | string | yes | Destination — place/station name or NSR id, e.g. “Bergen stasjon” |
depart_at | string | no | Optional departure time, ISO 8601 (e.g. “2026-07-20T08:00:00+02:00”). Default: now. |
modes | array | no | Optional: restrict transit legs to these modes, e.g. [“rail”] for train-only |
items | string | no | |
max_trips | number | no | Max itineraries to return, 1-10 (default 3) |
Example call
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_journey","arguments":{}}}'
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.