opentripmap_place_detail
Pack: opentripmap · Endpoint: https://gateway.pipeworx.io/opentripmap/mcp
Get full details for a single place by its OpenTripMap xid (obtained from opentripmap_places_radius or opentripmap_autosuggest). Returns name, address, categories, Wikidata/Wikipedia links, description extract, image, and website. Example: opentripmap_place_detail({ xid: “N123456”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
xid | string | yes | OpenTripMap place id (xid), e.g. “N123456” or “W789” |
lang | string | no | Two-letter language code for text (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_place_detail","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.