google_search
Retrieve structured data from Google search results to extract information for research, analysis, or content creation. Supports country-specific searches for localized data.
Instructions
Retrieve structured data from Google search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | Country code for localized results (e.g., US, GB) | US |
query | Yes | The search query to perform |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"default": "US",
"description": "Country code for localized results (e.g., US, GB)",
"type": "string"
},
"query": {
"description": "The search query to perform",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}