Fetch Browser

by TheSethRose
Verified

google_search

Execute a Google search and return results in various formats

Input Schema

NameRequiredDescriptionDefault
maxResultsNoMaximum number of results to return
queryYesThe search query to execute
responseTypeNoExpected response typejson
topicNoType of search to performweb

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "maxResults": { "default": 10, "description": "Maximum number of results to return", "maximum": 100, "minimum": 1, "type": "number" }, "query": { "description": "The search query to execute", "minLength": 1, "type": "string" }, "responseType": { "default": "json", "description": "Expected response type", "enum": [ "text", "json", "html", "markdown" ], "type": "string" }, "topic": { "default": "web", "description": "Type of search to perform", "enum": [ "web", "news" ], "type": "string" } }, "required": [ "query" ], "type": "object" }

You must be authenticated.

Other Tools