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

NameTypeRequiredDescription
latnumberyesLatitude of the search center, e.g. 48.8566
lonnumberyesLongitude of the search center, e.g. 2.3522
radiusnumberyesSearch radius in meters, e.g. 1000
kindsstringnoOptional comma-separated category filter, e.g. “museums”, “historic,architecture”, “foods”. See OpenTripMap “kinds” taxonomy.
limitnumbernoMax number of POIs to return (default 50)
ratestringnoOptional minimum importance rating: “1”,“2”,“3”,“1h”,“2h”,“3h” (h = has Wikidata/heritage). Filters to more notable places.
langstringnoTwo-letter language code for names (default “en”)
_apiKeystringyesOpenTripMap 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.

Regenerated from source · build July 15, 2026