place-details
Retrieve comprehensive details about a specific location using its Google Place ID. Designed for integration with MCP Server Boilerplate to enhance AI assistant capabilities with place-specific data.
Instructions
Get detailed information about a specific place
Input Schema
Name | Required | Description | Default |
---|---|---|---|
place_id | Yes | The Google Place ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"place_id": {
"description": "The Google Place ID",
"type": "string"
}
},
"required": [
"place_id"
],
"type": "object"
}