reverse_geocode
Pack: geoapify · Endpoint: https://gateway.pipeworx.io/geoapify/mcp
Reverse geocoding: convert latitude/longitude coordinates into the nearest street address. Returns formatted address, country, city, street, house number, and postcode. Example: reverse_geocode({ lat: 48.8584, lon: 2.2945 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude in decimal degrees, e.g. 48.8584 |
lon | number | yes | Longitude in decimal degrees, e.g. 2.2945 |
_apiKey | string | no | Optional — your own Geoapify API key for higher limits; omit to use the shared Pipeworx key. |
Example call
curl -X POST https://gateway.pipeworx.io/geoapify/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reverse_geocode","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"geoapify": {
"url": "https://gateway.pipeworx.io/geoapify/mcp"
}
}
}
See Getting Started for client-specific install steps.