reverse_geocode
Pack: tomtom · Endpoint: https://gateway.pipeworx.io/tomtom/mcp
Reverse geocoding: convert latitude/longitude coordinates into a human-readable street address. Returns the freeform address, country, municipality, street name, postal code, and position. Example: reverse_geocode({ lat: 40.748, lon: -73.985 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude of the point to reverse geocode |
lon | number | yes | Longitude of the point to reverse geocode |
Example call
Arguments
{
"lat": 40.748,
"lon": -73.985,
"_apiKey": "your-tomtom-api-key"
}
curl
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":"reverse_geocode","arguments":{"lat":40.748,"lon":-73.985,"_apiKey":"your-tomtom-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_geocode', {
"lat": 40.748,
"lon": -73.985,
"_apiKey": "your-tomtom-api-key"
});
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.