entur_stops_search

Pack: entur · Endpoint: https://gateway.pipeworx.io/entur/mcp

Search Norwegian public-transport stops, train stations, tram/metro/bus stops, ferry quays and places by name via the Entur national stop-register geocoder. Returns official name, NSR id (usable in entur_departures and entur_journey), locality, categories, transport modes, and coordinates. Example: entur_stops_search({ query: “Trondheim” })

Parameters

NameTypeRequiredDescription
querystringyesPlace or stop name to search, e.g. “Trondheim”, “Nationaltheatret”
limitnumbernoMax results, 1-25 (default 10)

Example call

Arguments

{
  "query": "Trondheim"
}

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_stops_search","arguments":{"query":"Trondheim"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('entur_stops_search', {
  "query": "Trondheim"
});

More examples

{
  "query": "Nationaltheatret",
  "limit": 20
}

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.

Regenerated from source · build September 4, 2026