reverse_geocode
Pack: geo · Endpoint: https://gateway.pipeworx.io/geo/mcp
Convert coordinates to a physical address. Returns street address, city, country, and postal code. Use to identify locations from lat/lng pairs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude |
longitude | number | yes | Longitude |
Example call
Arguments
{
"latitude": 40.7128,
"longitude": -74.006
}
curl
curl -X POST https://gateway.pipeworx.io/geo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reverse_geocode","arguments":{"latitude":40.7128,"longitude":-74.006}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_geocode', {
"latitude": 40.7128,
"longitude": -74.006
});
More examples
{
"latitude": 48.8584,
"longitude": 2.2945
}
Response shape
Always returns: display_name, address
| Field | Type | Description |
|---|---|---|
display_name | string | Formatted address string |
address | object | Detailed address components as key-value pairs |
Full JSON Schema
{
"type": "object",
"properties": {
"display_name": {
"type": "string",
"description": "Formatted address string"
},
"address": {
"type": "object",
"description": "Detailed address components as key-value pairs"
}
},
"required": [
"display_name",
"address"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"geo": {
"url": "https://gateway.pipeworx.io/geo/mcp"
}
}
}
See Getting Started for client-specific install steps.