geocode
Pack: maptiler · Endpoint: https://gateway.pipeworx.io/maptiler/mcp
“Geocode [address]” / “find coordinates of [place]” / “lat lng for [city]” / “search OpenStreetMap-backed places” — forward geocoding via MapTiler (OpenStreetMap-curated). Returns ranked candidates with lat/lng, address components, and feature IDs for re-lookup via geocode_by_id. Alternative to Mapbox/Google geocoders when you want OSM data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
language | string | no | |
limit | number | no | |
bbox | string | no | |
proximity | string | no | |
country | string | no | |
types | string | no | |
autocomplete | boolean | no | |
fuzzyMatch | boolean | no |
Example call
Arguments
{
"query": "Eiffel Tower, Paris"
}
curl
curl -X POST https://gateway.pipeworx.io/maptiler/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode","arguments":{"query":"Eiffel Tower, Paris"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('geocode', {
"query": "Eiffel Tower, Paris"
});
More examples
{
"query": "coffee shop",
"proximity": "48.8566,2.3522",
"limit": 5,
"fuzzyMatch": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"maptiler": {
"url": "https://gateway.pipeworx.io/maptiler/mcp"
}
}
}
See Getting Started for client-specific install steps.