google_search_maps
Retrieve Google Maps search results by entering a query, location, place ID, or country code using the Serper MCP Server for accurate, location-based web data.
Instructions
Search Google for results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | No | The CID to search in | |
gl | No | The country to search in, e.g. us, uk, ca, au, etc. | |
hl | No | The language to search in, e.g. en, es, fr, de, etc. | |
ll | No | The GPS position & zoom level | |
page | No | The page number to return, first page is 1 | |
placeId | No | The place ID to search in | |
q | Yes | The query to search for |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The CID to search in",
"title": "Cid"
},
"gl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The country to search in, e.g. us, uk, ca, au, etc.",
"title": "Gl"
},
"hl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The language to search in, e.g. en, es, fr, de, etc.",
"title": "Hl"
},
"ll": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The GPS position & zoom level",
"title": "Ll"
},
"page": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"description": "The page number to return, first page is 1",
"title": "Page"
},
"placeId": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The place ID to search in",
"title": "Placeid"
},
"q": {
"description": "The query to search for",
"title": "Q",
"type": "string"
}
},
"required": [
"q"
],
"title": "MapsRequest",
"type": "object"
}