maps_place_details
Pack: google_maps · Endpoint: https://gateway.pipeworx.io/google_maps/mcp
Get full details for a place: address, phone, hours, website, and user reviews. Use with a place ID from search results.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Google Place ID |
_apiKey | string | yes | Google Maps API key |
Example call
Arguments
{
"place_id": "ChIJIQBpAG2dQIcR_6128GltTXQ",
"_apiKey": "your-google_maps-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/google_maps/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"maps_place_details","arguments":{"place_id":"ChIJIQBpAG2dQIcR_6128GltTXQ","_apiKey":"your-google_maps-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('maps_place_details', {
"place_id": "ChIJIQBpAG2dQIcR_6128GltTXQ",
"_apiKey": "your-google_maps-api-key"
});
Response shape
| Field | Type | Description |
|---|---|---|
result | object | Detailed place information |
status | string | Status of the place details request |
Full JSON Schema
{
"type": "object",
"properties": {
"result": {
"type": "object",
"description": "Detailed place information",
"properties": {
"name": {
"type": "string",
"description": "Place name"
},
"formatted_address": {
"type": "string",
"description": "Formatted address"
},
"formatted_phone_number": {
"type": "string",
"description": "Place phone number"
},
"opening_hours": {
"type": "object",
"description": "Operating hours information",
"properties": {
"open_now": {
"type": "boolean",
"description": "Whether currently open"
},
"periods": {
"type": "array",
"description": "Weekly operating periods"
},
"weekday_text": {
"type": "array",
"items": {
"type": "string"
},
"description": "Human-readable weekly hours"
}
}
},
"rating": {
"type": "number",
"description": "Average user rating (0-5)"
},
"website": {
"type": "string",
"description": "Place website URL"
},
"reviews": {
"type": "array",
"description": "User reviews",
"items": {
"type": "object",
"properties": {
"author_name": {
"type": "string",
"description": "Reviewer name"
},
"rating": {
"type": "number",
"description": "Review rating (1-5)"
},
"text": {
"type": "string",
"description": "Review text"
},
"time": {
"type": "number",
"description": "Review timestamp (Unix)"
}
}
}
},
"price_level": {
"type": "integer",
"description": "Price level (1-4, where 4 is most expensive)"
},
"types": {
"type": "array",
"items": {
"type": "string"
},
"description": "Place type categories"
},
"geometry": {
"type": "object",
"description": "Location geometry",
"properties": {
"location": {
"type": "object",
"properties": {
"lat": {
"type": "number",
"description": "Latitude"
},
"lng": {
"type": "number",
"description": "Longitude"
}
}
}
}
},
"place_id": {
"type": "string",
"description": "Unique Google place ID"
}
}
},
"status": {
"type": "string",
"enum": [
"OK",
"ZERO_RESULTS",
"NOT_FOUND",
"INVALID_REQUEST",
"OVER_QUERY_LIMIT",
"REQUEST_DENIED",
"UNKNOWN_ERROR"
],
"description": "Status of the place details request"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"google_maps": {
"url": "https://gateway.pipeworx.io/google_maps/mcp"
}
}
}
See Getting Started for client-specific install steps.