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
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":{}}}'
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.