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
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Partial place name to match, e.g. “louv” |
lat | number | yes | Latitude of the search center |
lon | number | yes | Longitude of the search center |
radius | number | yes | Search radius in meters, e.g. 5000 |
kinds | string | no | Optional comma-separated category filter |
limit | number | no | Max results to return (default 50) |
lang | string | no | Two-letter language code (default “en”) |
_apiKey | string | yes | OpenTripMap API key |
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_autosuggest","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.