Skip to main content
Glama

mouse_click

Clicks at screen coordinates, verifying target window and bounds first when windowTitle is supplied. Supports double/triple clicks and screenshot-relative coordinates.

Instructions

Click at screen coordinates. Normally pass windowTitle so the server auto-guards the click (verifies target identity, foreground, coordinate is inside the target rect) and returns post.perception without a confirmation screenshot. origin+scale from dotByDot=true screenshots are converted to screen coords before guarding. doubleClick:true for double-click; tripleClick:true for triple-click (selects a full line of text). Prefer click_element (UIA) for native apps, prefer browser_click for Chrome. Examples: mouse_click({windowTitle:'Notepad', x:200, y:150}) // guarded — post.perception.status='ok'. mouse_click({x:100, y:100}) // unguarded — post.perception.status='unguarded'. If a guard failure returns a suggestedFix, pass its fixId to approve the fix: mouse_click({fixId:'fix-...'}) // one-shot, expires in 15s. lensId is optional and only for advanced pinned-target workflows; omit it for normal use. Caveats: origin+scale are meaningful ONLY with dotByDot=true screenshot responses. hints.verifyDelivery:{status:'delivered'|'focus_only'|'unverifiable', reason} reports the post-click observation; the status is decided from three signals — focused-element shift, the element under the cursor changing between two readable reads, and window-foreground change — or from none of them firing. Win11 foreground refusal during the homing path (UIPI cross-elevation / admin-only target / call from a background process or service) returns code:'ForegroundRestricted' ok:false rather than landing the click on the wrong window — recover by switching to a tool that accepts windowTitle directly (click_element / desktop_act) — browser_* tools target by tabId/selector, not windowTitle. MouseClickNotDelivered is reserved-only (false-positive risk is too high to emit a typed code), so degradation is expressed via the 'unverifiable' status, not a separate error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYesX coordinate. Screen-absolute by default. When 'origin' is provided, treated as image-local (pixel position within the screenshot).
yYesY coordinate. Screen-absolute by default. When 'origin' is provided, treated as image-local.
hwndNoDirect window handle ID (takes precedence over windowTitle). Obtain from get_windows response (hwnd field). String type to avoid 64-bit precision issues.
fixIdNoOne-shot fix approval ID. If a previous mouse_click returned a suggestedFix, pass that fixId here to approve it. The server revalidates the fix and executes with corrected args. fixId expires in 15 seconds and can only be used once.
scaleNoScale factor from screenshot response (only when dotByDotMaxDimension caused a resize). Omit if the screenshot was 1:1. Only used when 'origin' is also provided.
speedNoCursor movement speed in px/sec. 0 = instant.
buttonNoMouse button to clickleft
homingNoEnable homing correction if the target window moved.
lensIdNoOptional perception lens ID for advanced pinned-target workflows. When provided, guards are evaluated before clicking (safe.clickCoordinates, target.identityStable) and a perception envelope is attached to post.perception in the response. For normal use, omit lensId and pass windowTitle directly — Auto Perception handles tracking.
originNoWhen set, (x,y) are image-local coords from a screenshot. Server converts to screen coords: screen_x = origin.x + x / (scale ?? 1), screen_y = origin.y + y / (scale ?? 1). Copy origin values directly from the screenshot response text. This eliminates manual coord math and prevents out-of-window clicks.
includeNoOptional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).
narrateNoNarration level. rich includes UIA or browser state diff when supported, and is withheld with post.rich.diffDegraded when the diff cannot be shown to describe the window that was acted on.minimal
settleMsNoMilliseconds to wait before checking post-action state.
elementIdNoAutomationId of the UI element.
forceFocusNoBypass Windows foreground-stealing protection before focusing.
trackFocusNoDetect if focus was stolen after the action.
doubleClickNoWhether to double-click
elementNameNoName or label of the UI element.
tripleClickNoWhether to triple-click (select a line of text). Takes precedence over doubleClick when both are true.
windowTitleNoPartial title of the target window.
verifyDeliveryYesParameter 'verifyDeliveryParam' from the Windows server schema.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.0.0
    • changedInput schema / properties / narrate / description
      Previous value: -"Narration level. rich includes UIA or browser state diff when supported."New value: +"Narration level. rich includes UIA or browser state diff when supported, and is withheld with post.rich.diffDegraded when the diff cannot be shown to describe the window that was acted on."
  2. Addedv1.12.0
  3. Removedv1.10.4
  4. Addedv1.9.2
  5. Removedv1.8.0
  6. Addedv1.6.0
  7. Removedv1.5.1
  8. Addedv1.5.0
  9. Removedv1.4.3
  10. Addedv1.4.2
  11. Removedv1.4.0
  12. Changed1 schema field changedv1.2.1
    • addedInput schema / properties / include
      Added value: +{
      +  "description": "Optional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
  13. Changed3 schema fields changedv1.1.1
    • addedInput schema / properties / origin / additionalProperties
      Added value: +false
    • addedInput schema / properties / origin / properties
      Added value: +{
      +  "x": {
      +    "description": "Screen x of image top-left (copy from screenshot response)",
      +    "type": "number"
      +  },
      +  "y": {
      +    "description": "Screen y of image top-left (copy from screenshot response)",
      +    "type": "number"
      +  }
      +}
    • addedInput schema / properties / origin / required
      Added value: +[
      +  "x",
      +  "y"
      +]
  14. Addedv1.0.3
  15. Removedv0.15.7
  16. Changed1 schema field changedv0.15.4
    • addedInput schema / properties / hwnd
      Added value: +{
      +  "description": "Direct window handle ID (takes precedence over windowTitle). Obtain from get_windows response (hwnd field). String type to avoid 64-bit precision issues.",
      +  "type": "string"
      +}
  17. Changed1 schema field changedv0.13.1
    • addedInput schema / properties / fixId
      Added value: +{
      +  "description": "One-shot fix approval ID. If a previous mouse_click returned a suggestedFix, pass that fixId here to approve it. The server revalidates the fix and executes with corrected args. fixId expires in 15 seconds and can only be used once.",
      +  "type": "string"
      +}
  18. Changed21 schema fields changedv0.10.0
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / _stub
      Removed value: -{
      -  "description": "Stub tool — arguments ignored."
      -}
    • addedInput schema / properties / button
      Added value: +{
      +  "default": "left",
      +  "description": "Mouse button to click",
      +  "enum": [
      +    "left",
      +    "right",
      +    "middle"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / doubleClick
      Added value: +{
      +  "default": false,
      +  "description": "Whether to double-click",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / elementId
      Added value: +{
      +  "description": "AutomationId of the UI element.",
      +  "type": "string"
      +}
    • addedInput schema / properties / elementName
      Added value: +{
      +  "description": "Name or label of the UI element.",
      +  "type": "string"
      +}
    • addedInput schema / properties / forceFocus
      Added value: +{
      +  "description": "Bypass Windows foreground-stealing protection before focusing.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / homing
      Added value: +{
      +  "default": true,
      +  "description": "Enable homing correction if the target window moved.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / lensId
      Added value: +{
      +  "description": "Optional perception lens ID from perception_register. When provided, guards are evaluated before clicking (safe.clickCoordinates, target.identityStable) and a perception envelope is attached to post.perception in the response.",
      +  "type": "string"
      +}
    • addedInput schema / properties / narrate
      Added value: +{
      +  "default": "minimal",
      +  "description": "Narration level. rich includes UIA or browser state diff when supported.",
      +  "enum": [
      +    "minimal",
      +    "rich"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / origin
      Added value: +{
      +  "description": "When set, (x,y) are image-local coords from a screenshot. Server converts to screen coords: screen_x = origin.x + x / (scale ?? 1), screen_y = origin.y + y / (scale ?? 1). Copy origin values directly from the screenshot response text. This eliminates manual coord math and prevents out-of-window clicks.",
      +  "type": "object"
      +}
    • addedInput schema / properties / scale
      Added value: +{
      +  "description": "Scale factor from screenshot response (only when dotByDotMaxDimension caused a resize). Omit if the screenshot was 1:1. Only used when 'origin' is also provided.",
      +  "type": "number"
      +}
    • addedInput schema / properties / settleMs
      Added value: +{
      +  "default": 300,
      +  "description": "Milliseconds to wait before checking post-action state.",
      +  "maximum": 2000,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedInput schema / properties / speed
      Added value: +{
      +  "description": "Cursor movement speed in px/sec. 0 = instant.",
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedInput schema / properties / trackFocus
      Added value: +{
      +  "default": true,
      +  "description": "Detect if focus was stolen after the action.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / tripleClick
      Added value: +{
      +  "default": false,
      +  "description": "Whether to triple-click (select a line of text). Takes precedence over doubleClick when both are true.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / windowTitle
      Added value: +{
      +  "description": "Partial title of the target window.",
      +  "type": "string"
      +}
    • addedInput schema / properties / x
      Added value: +{
      +  "description": "X coordinate. Screen-absolute by default. When 'origin' is provided, treated as image-local (pixel position within the screenshot).",
      +  "type": "number"
      +}
    • addedInput schema / properties / y
      Added value: +{
      +  "description": "Y coordinate. Screen-absolute by default. When 'origin' is provided, treated as image-local.",
      +  "type": "number"
      +}
    • addedInput schema / required
      Added value: +[
      +  "x",
      +  "y"
      +]
  19. First observedv0.6.2

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and excels. It discloses auto-guard behavior, the post.perception status, the conversion of origin+scale, double/triple-click precedence, the suggestedFix mechanism with 15s expiry, the verifyDelivery status signals, Win11 foreground refusal handling with a specific error code, and the reserved-only MouseClickNotDelivered. Every notable behavioral trait is explicitly documented.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but each sentence carries unique information. It is front-loaded with the core action and examples, then adds caveats and error recovery. The structure is logical, though the density could be slightly intimidating; however, there is no redundancy or filler, making it appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 21 parameters, nested objects, and no output schema, the description is remarkably complete. It explains return shapes (post.perception.status, hints.verifyDelivery), error recovery (fixId, ForegroundRestricted), parameter interactions, and even the rationale behind reserved error codes. An agent has everything needed to call this tool correctly and handle failure modes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds real value by explaining the interplay of origin+scale with conversion math, the semantics of verifyDelivery statuses ('delivered'|'focus_only'|'unverifiable' and the three signals), the one-shot fixId expiry, and the precedence of tripleClick over doubleClick. It does not rehash every parameter but focuses on the non-obvious ones, elevating it above the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Click at screen coordinates.' It immediately distinguishes from siblings by naming alternatives ('Prefer click_element (UIA) for native apps, prefer browser_click for Chrome') and clarifies scope. This gives an agent a clear, unambiguous purpose and differentiates it from similar tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use this tool vs alternatives ('Prefer click_element (UIA)... prefer browser_click...'), when to pass windowTitle for guarded clicks, and when lensId is appropriate ('only for advanced pinned-target workflows'). It also explains the unguarded fallback and how to recover from guard failures via fixId. Usage context is fully specified.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.