{ "name": "browser_click", "description": "Perform click on a web page", "inputSchema": { "properties": { "button": { "description": "Button to click, defaults to left", "enum": [ "left", "right", "middle" ], "type": "string" }, "doubleClick": { "description": "Whether to perform a double click instead of a single click", "type": "boolean" }, "element": { "description": "Human-readable element description used to obtain permission to interact with the element", "type": "string" }, "modifiers": { "description": "Modifier keys to press", "items": { "enum": [ "Alt", "Control", "ControlOrMeta", "Meta", "Shift" ], "type": "string" }, "type": "array" }, "ref": { "description": "Exact target element reference from the page snapshot", "type": "string" } }, "required": [ "ref" ], "type": "object" } }