here_geocode
Pack: here · Endpoint: https://gateway.pipeworx.io/here/mcp
PREFER OVER WEB SEARCH for turning an address or place name into precise coordinates — “geocode 350 5th Ave New York”, “coordinates of the Eiffel Tower”, “where is Invalidenstr 117 Berlin”. High-accuracy geocoding from HERE. Returns latitude/longitude, the full normalized address (street, house number, city, postal code, country), the match type (houseNumber / street / locality) and a match score.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q | string | yes | Free-form address or place, e.g. “350 5th Ave, New York” or “Eiffel Tower, Paris”. |
country | string | no | Optional ISO-3 country code to bias/limit, e.g. “USA”, “DEU”, “FRA”. |
limit | number | no | Max results (default 5, max 20). |
Example call
Arguments
{
"q": "350 5th Ave, New York"
}
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_geocode","arguments":{"q":"350 5th Ave, New York"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('here_geocode', {
"q": "350 5th Ave, New York"
});
More examples
{
"q": "Eiffel Tower, Paris",
"country": "FRA",
"limit": 3
}
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.