reverse_geocode
Pack: ban-fr · Endpoint: https://gateway.pipeworx.io/ban-fr/mcp
Reverse-geocode a coordinate to the nearest French address/feature. Returns scored GeoJSON matches with label, postcode, citycode (INSEE), context and distance (metres). France only.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude (WGS84). |
lon | number | yes | Longitude (WGS84). |
type | string | no | Restrict to a feature type. |
Example call
Arguments
{
"lat": 48.8566,
"lon": 2.3522
}
curl
curl -X POST https://gateway.pipeworx.io/ban-fr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reverse_geocode","arguments":{"lat":48.8566,"lon":2.3522}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_geocode', {
"lat": 48.8566,
"lon": 2.3522
});
More examples
{
"lat": 43.2965,
"lon": 5.3698,
"type": "street"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ban-fr": {
"url": "https://gateway.pipeworx.io/ban-fr/mcp"
}
}
}
See Getting Started for client-specific install steps.