google_search_autocomplete
Retrieve autocomplete suggestions for Google searches to enhance query accuracy. Supports location, language, and autocorrection settings for precise results.
Instructions
Search Google for results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autocorrect | No | Automatically correct | |
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. | |
location | No | The location to search in, e.g. San Francisco, CA, USA | |
page | No | The page number to return, first page is 1 | |
q | Yes | The query to search for |
Input Schema (JSON Schema)
{
"properties": {
"autocorrect": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"description": "Automatically correct",
"title": "Autocorrect"
},
"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"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The location to search in, e.g. San Francisco, CA, USA",
"title": "Location"
},
"page": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"description": "The page number to return, first page is 1",
"title": "Page"
},
"q": {
"description": "The query to search for",
"title": "Q",
"type": "string"
}
},
"required": [
"q"
],
"title": "AutocorrectRequest",
"type": "object"
}