MCP Chrome Google Search

web-search

Search webpages and get a specific page of results (each page has ~10 results). Optionally filter by site and timeframe.

Input Schema

NameRequiredDescriptionDefault
pageNumberNoWhich page of results to fetch (1-5). Each page contains ~10 results
query_textYesPlain text to search for (no Google operators plain text only - use other parameters for site/date filtering)
siteNoLimit search to specific domain (e.g. 'github.com' or 'docs.python.org')
timeframeNoTime range filter (h=hour, d=day, w=week, m=month, y=year)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "pageNumber": { "default": 1, "description": "Which page of results to fetch (1-5). Each page contains ~10 results", "maximum": 5, "minimum": 1, "type": "number" }, "query_text": { "description": "Plain text to search for (no Google operators plain text only - use other parameters for site/date filtering)", "minLength": 1, "type": "string" }, "site": { "description": "Limit search to specific domain (e.g. 'github.com' or 'docs.python.org')", "type": "string" }, "timeframe": { "description": "Time range filter (h=hour, d=day, w=week, m=month, y=year)", "enum": [ "h", "d", "w", "m", "y" ], "type": "string" } }, "required": [ "query_text" ], "type": "object" }

You must be authenticated.

Other Tools