Skip to main content
Glama
bh213

hx-multianim-mcp

by bh213

click_button

Clicks an interactive button by ID rather than coordinates, enabling actions on off-screen or obscured elements. Use list_interactives to find IDs.

Instructions

Directly click an interactive button by its ID, bypassing coordinate-based hit testing. Works even if the button is scrolled off-screen or obscured by other elements. Use list_interactives to discover available button IDs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesInteractive identifier (as returned by list_interactives)
screenNoScreen name to scope the search. If omitted, searches all active screens.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.15.0

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses important behavioral traits: bypassing hit testing and working when the button is off-screen or obscured. But it omits side effects, permissions, reversibility, or return behavior for a mutation-like action.

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

Conciseness5/5

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

Three tightly written sentences, front-loaded with the core action and its key differentiator. Each sentence adds useful information without redundancy.

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

Completeness3/5

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

For a mutation-like tool with no annotations and no output schema, the description covers the unique mechanics well. However, it omits side effects, error handling, and return information, which an agent would need to use it confidently.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't elaborate on the screen parameter or ID format beyond the schema's own description).

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?

States a specific verb (click) and resource (interactive button by ID), and distinguishes itself from coordinate-based hit testing. The bypass mechanism and off-screen/obscured support make its scope 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 a clear prerequisite (use list_interactives to discover button IDs) and implies when to prefer it over coordinate-based clicking. However, it does not explicitly name alternative tools or state when not to use this tool.

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