opentripmap_places_radius
Pack: opentripmap · Endpoint: https://gateway.pipeworx.io/opentripmap/mcp
Find points of interest (tourist attractions, museums, restaurants, historic sites, etc.) within a radius of a lat/lon point. Returns matching POIs with xid, name, kind categories, distance from the center, and coordinates. Example: opentripmap_places_radius({ lat: 48.8566, lon: 2.3522, radius: 1000, kinds: “museums”, limit: 20, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude of the search center, e.g. 48.8566 |
lon | number | yes | Longitude of the search center, e.g. 2.3522 |
radius | number | yes | Search radius in meters, e.g. 1000 |
kinds | string | no | Optional comma-separated category filter, e.g. “museums”, “historic,architecture”, “foods”. See OpenTripMap “kinds” taxonomy. |
limit | number | no | Max number of POIs to return (default 50) |
rate | string | no | Optional minimum importance rating: “1”,“2”,“3”,“1h”,“2h”,“3h” (h = has Wikidata/heritage). Filters to more notable places. |
lang | string | no | Two-letter language code for names (default “en”) |
_apiKey | string | yes | OpenTripMap API key (free at https://dev.opentripmap.org/register) |
Example call
curl -X POST https://gateway.pipeworx.io/opentripmap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"opentripmap_places_radius","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"opentripmap": {
"url": "https://gateway.pipeworx.io/opentripmap/mcp"
}
}
}
See Getting Started for client-specific install steps.