search_google_maps
Search Google Maps for locations and services using queries and coordinates to find relevant results quickly. Accessible via the SearchAPI MCP Server for AI-driven assistance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location_ll | No | 位置坐标,格式为"纬度,经度" | |
query | Yes | 搜索查询 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location_ll": {
"description": "位置坐标,格式为\"纬度,经度\"",
"type": "string"
},
"query": {
"description": "搜索查询",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}