Entur Norway

live Transport

Norway public transport nationwide — real-time departures for rail, metro, tram, bus and ferry at any stop, journey planning between any two places, and stop search, via the official Entur open API.

3 tools
0ms auth
free tier 50 calls/day

Tools

entur_departures

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 (th

No parameters required.

Try it
entur_journey

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

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/entur/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/entur/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"entur_departures","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("entur_departures", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("norway public transport nationwide — real-time departures for rail, metro, tram, bus and ferry at any stop, journey planning between any two places, and stop search, via the official entur open api");