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
Arguments
{
"lat": 48.8584,
"lon": 2.2945
}
curl
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":{"lat":48.8584,"lon":2.2945}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_geocode', {
"lat": 48.8584,
"lon": 2.2945
});
More examples
{
"lat": 40.7128,
"lon": -74.006
}
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.