search_google
Execute a Google search directly through the Google Toolbox MCP server to retrieve formatted results. Specify your query and number of results for precise, actionable data.
Instructions
Perform a Google search and return formatted results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"num_results": {
"default": 5,
"title": "Num Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_googleArguments",
"type": "object"
}