geocode
Pack: tomtom · Endpoint: https://gateway.pipeworx.io/tomtom/mcp
Geocoding: convert an address, place name, or free-text location query into geographic coordinates (latitude/longitude). Returns formatted address, country, lat, lon, type, and match score. Example: geocode({ query: “350 5th Ave, New York” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Address or place to geocode, e.g. “350 5th Ave, New York” or “Eiffel Tower” |
limit | number | no | Maximum number of results to return (default 5) |
Example call
curl -X POST https://gateway.pipeworx.io/tomtom/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tomtom": {
"url": "https://gateway.pipeworx.io/tomtom/mcp"
}
}
}
See Getting Started for client-specific install steps.