opentripmap_autosuggest

Pack: opentripmap · Endpoint: https://gateway.pipeworx.io/opentripmap/mcp

Typeahead / partial-name search for POIs near a lat/lon point. Matches place names by prefix within a radius — good for “find places starting with X near here”. Returns matching POIs with xid, name, kinds, distance, and coordinates. Example: opentripmap_autosuggest({ name: “louv”, lat: 48.8566, lon: 2.3522, radius: 5000, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
namestringyesPartial place name to match, e.g. “louv”
latnumberyesLatitude of the search center
lonnumberyesLongitude of the search center
radiusnumberyesSearch radius in meters, e.g. 5000
kindsstringnoOptional comma-separated category filter
limitnumbernoMax results to return (default 50)
langstringnoTwo-letter language code (default “en”)
_apiKeystringyesOpenTripMap API key

Example call

Arguments

{
  "name": "louv",
  "lat": 48.8566,
  "lon": 2.3522,
  "radius": 5000,
  "_apiKey": "your-opentripmap-api-key"
}

curl

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_autosuggest","arguments":{"name":"louv","lat":48.8566,"lon":2.3522,"radius":5000,"_apiKey":"your-opentripmap-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('opentripmap_autosuggest', {
  "name": "louv",
  "lat": 48.8566,
  "lon": 2.3522,
  "radius": 5000,
  "_apiKey": "your-opentripmap-api-key"
});

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 August 29, 2026