Chrome Tools MCP Server

click_element

Input Schema

NameRequiredDescriptionDefault
selectorYesCSS selector to find the element to click
tabIdYesID of the Chrome tab containing the element

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "selector": { "description": "CSS selector to find the element to click", "type": "string" }, "tabId": { "description": "ID of the Chrome tab containing the element", "type": "string" } }, "required": [ "tabId", "selector" ], "type": "object" }