Chrome Tools MCP Server

load_url

Input Schema

NameRequiredDescriptionDefault
tabIdYesID of the Chrome tab to load the URL in
urlYesURL to load in the tab

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "tabId": { "description": "ID of the Chrome tab to load the URL in", "type": "string" }, "url": { "description": "URL to load in the tab", "format": "uri", "type": "string" } }, "required": [ "tabId", "url" ], "type": "object" }