search-maps
Search Google Maps to find locations and businesses using queries, GPS coordinates, place IDs, or CIDs. Leverage Dumpling AI MCP Server for precise and customizable map-based data retrieval.
Instructions
Search Google Maps for locations and businesses.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | No | Google Maps CID | |
gpsPositionZoom | No | GPS coordinates with zoom (e.g., 'lat,long,zoom') | |
language | No | Language code (e.g., 'en') | |
page | No | Page number | |
placeId | No | Google Place ID | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cid": {
"description": "Google Maps CID",
"type": "string"
},
"gpsPositionZoom": {
"description": "GPS coordinates with zoom (e.g., 'lat,long,zoom')",
"type": "string"
},
"language": {
"description": "Language code (e.g., 'en')",
"type": "string"
},
"page": {
"description": "Page number",
"type": "number"
},
"placeId": {
"description": "Google Place ID",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}