place-details
Retrieve detailed information about a specific location by providing its unique place ID through the Campertunity MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
placeId | Yes | The id of the place to get details for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"placeId": {
"description": "The id of the place to get details for.",
"type": "string"
}
},
"required": [
"placeId"
],
"type": "object"
}