MCP Chrome Google Search

web_fetch

Extract readable text content from a webpage using Chrome browser automation.

Key Features:

  • Returns main content text and optionally links

Input Schema

NameRequiredDescriptionDefault
includeLinksNoWhether to include extracted links in the output
urlYesWebpage URL to fetch (must include http:// or https://)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "includeLinks": { "default": false, "description": "Whether to include extracted links in the output", "type": "boolean" }, "url": { "description": "Webpage URL to fetch (must include http:// or https://)", "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }

You must be authenticated.

Other Tools