Chrome Debug MCP Server

click

Click an element on the page

Input Schema

NameRequiredDescriptionDefault
buttonNoMouse button to use
delayNoOptional delay before clicking (in milliseconds)
selectorYesCSS selector for element to click

Input Schema (JSON Schema)

{ "properties": { "button": { "description": "Mouse button to use", "enum": [ "left", "right", "middle" ], "type": "string" }, "delay": { "description": "Optional delay before clicking (in milliseconds)", "type": "number" }, "selector": { "description": "CSS selector for element to click", "type": "string" } }, "required": [ "selector" ], "type": "object" }