Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

app_click

Click a Windows application at screenshot pixel coordinates by specifying its window title. Automates button presses, double-clicks, and right-clicks on GUI controls.

Instructions

Click on a Windows application window at the given coordinates.

Coordinates use screenshot pixels — take a screenshot_app first to identify where to click, then use those pixel coordinates here.

Uses PostMessage with automatic child window targeting so clicks reach the correct control (buttons, edits, etc.).

Args: window_title: Full or partial window title (case-insensitive). x: X coordinate in screenshot pixels. y: Y coordinate in screenshot pixels. button: 'left' (default) or 'right'. double_click: If True, send a double-click.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYes
yYes
buttonNoleft
double_clickNo
window_titleYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the mechanism ('Uses PostMessage with automatic child window targeting'), the coordinate system ('screenshot pixels'), and case-insensitive window matching. It does not cover side effects like focus changes or failure modes, but the primary behavior is well explained.

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 structured with a clear intro, a usage hint, a mechanism note, and an Args list. It front-loads the purpose and each section earns its place. Slightly verbose but still focused – the workflow sentence is necessary for correct use.

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

Completeness4/5

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

Given moderate parameter count (5) and presence of output schema, the description covers the essential call context: coordinate acquisition via screenshot, window targeting, and each argument's meaning. It does not describe error behavior or prerequisites like visible windows, but for a click tool this is sufficient.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully document parameters. It does: window_title (full or partial, case-insensitive), x/y (screenshot pixels), button (left/right with default), double_click (boolean meaning). This adds meaningful semantics that the schema fails to convey.

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 states a specific action ('Click') on a specific resource ('Windows application window at the given coordinates'), and distinguishes it from related tools like screenshot_app (captures the screen for coordinate reference) and adb_tap (Android-specific). The verb+resource+method is explicit and unambiguous.

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

Usage Guidelines4/5

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

Provides explicit workflow guidance: 'take a screenshot_app first to identify where to click, then use those pixel coordinates here.' This tells the agent when and how to use the tool. It does not list explicit 'when not to use' or alternatives, but the context is clear enough for typical use.

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