Tool ReferenceOther
geocode_address
Geocode Address / POI Search
Geocode an address/place name to coordinates, or search points of interest. App-initiated backend for the interactive_map_app search box; also usable directly. `place_type` filters result classes (e.g. 'address,locality,region' for addresses, 'poi' for points of interest); `poi_category` (e.g. 'health_services') searches a POI category instead of free text. Optional proximity biases results toward the current view; `limit` caps results (1-10).
https://mcp.barocline.com/mcphttps://mcpkey.barocline.com/weather-risk/mcphttps://mcpoauth.barocline.com/mcpRead-onlyIdempotent
Parameters
| Name | Type | Required | Default |
|---|---|---|---|
query | string | Yes | - |
proximity_lat | number | null | No | null |
proximity_lon | number | null | No | null |
place_type | string | No | "" |
poi_category | string | No | "" |
limit | integer | No | 1 |
Sample input
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "geocode_address",
"arguments": {
"query": "value",
"place_type": "",
"poi_category": "",
"limit": 1
}
}
}{
"name": "geocode_address",
"arguments": {
"query": "value",
"place_type": "",
"poi_category": "",
"limit": 1
}
}