here_reverse_geocode

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

Turn coordinates into the nearest street address (reverse geocoding) via HERE — “what address is at 40.7484, -73.9857”. Returns the normalized address, place title, and distance to the matched location.

Parameters

NameTypeRequiredDescription
latnumberyesLatitude, e.g. 40.7484.
lngnumberyesLongitude, e.g. -73.9857.

Example call

Arguments

{
  "lat": 40.7484,
  "lng": -73.9857
}

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_reverse_geocode","arguments":{"lat":40.7484,"lng":-73.9857}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('here_reverse_geocode', {
  "lat": 40.7484,
  "lng": -73.9857
});

More examples

{
  "lat": 48.8584,
  "lng": 2.2945
}

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