Smithery

browser_click_at

Click at specific x,y coordinates on the current browser page. Use this when elements cannot be targeted by CSS selector — such as CAPTCHA checkboxes, canvas elements, iframes, or Cloudflare Turnstile widgets. Returns a screenshot after clicking.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called browser_click_at? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate (pixels from left edge of viewport)"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate (pixels from top edge of viewport)"
    },
    "delay": {
      "type": "number",
      "default": 0,
      "description": "Delay in ms between mousedown and mouseup (simulates human-like click)"
    },
    "sessionId": {
      "type": "string",
      "description": "Session ID from browser_navigate"
    },
    "clickCount": {
      "type": "number",
      "default": 1,
      "description": "Number of clicks (default: 1, use 2 for double-click)"
    }
  }
}