here_route

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

TRAFFIC-AWARE routing and ETA between two locations via HERE — “how long to drive from Berlin to Munich”, “ETA from LAX to downtown LA in traffic”, “cycling route from A to B”. Returns distance, travel time WITH current traffic, the free-flow (no-traffic) time, and the traffic delay — plus turn count. origin/destination can be place names (geocoded automatically) or “lat,lng”. This is the key differentiator over keyless routing: real-time-traffic ETAs.

Parameters

NameTypeRequiredDescription
originstringyesStart — place name (e.g. “LAX airport”) or “lat,lng”.
destinationstringyesEnd — place name (e.g. “downtown Los Angeles”) or “lat,lng”.
transport_modestringnocar (default) | truck | pedestrian | bicycle | scooter.

Example call

Arguments

{
  "origin": "LAX airport",
  "destination": "downtown Los Angeles",
  "transport_mode": "car"
}

curl

curl -X POST https://gateway.pipeworx.io/here/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"here_route","arguments":{"origin":"LAX airport","destination":"downtown Los Angeles","transport_mode":"car"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('here_route', {
  "origin": "LAX airport",
  "destination": "downtown Los Angeles",
  "transport_mode": "car"
});

More examples

{
  "origin": "Berlin",
  "destination": "Munich",
  "transport_mode": "truck"
}

Connect

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

{
  "mcpServers": {
    "here": {
      "url": "https://gateway.pipeworx.io/here/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 17, 2026