Skip to main content
Glama
Scofield81

Ubuntu Control MCP

by Scofield81

mouse_double_click

Double-click at specified screen coordinates or current cursor position on Ubuntu. Moves pointer first when x and y are provided, supporting left, middle, or right button.

Instructions

Dupla kattintas a megadott (vagy jelenlegi) pozicion.

Args: params (MouseClickInput): button, x, y. Returns: str: Megerosites.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already indicate the tool is not read-only, not idempotent, and not destructive. The description adds the behavioral detail that it acts on the current position when coordinates are omitted, and that it returns a confirmation string. It does not disclose details like double-click timing or what happens on invalid coordinates, but for a simple mouse action this is acceptable.

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 compact and front-loaded: a clear one-sentence summary followed by Args/Returns. No word is wasted, though the Hungarian phrasing and vague 'Megerosites' slightly reduce accessibility.

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?

For a simple mouse action with a nested schema and an output schema, the description covers the core behavior, current-position fallback, and return type. It does not explain when to use it or edge cases, but combined with the schema it provides enough for correct invocation.

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

Parameters2/5

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

The description merely lists 'params (MouseClickInput): button, x, y' without explaining their semantics. Since schema description coverage is 0%, the description fails to compensate by providing meaning for the parameters; meaningful details are only found in the nested schema property descriptions.

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 ('dupla kattintas' / double-click) on a clear target (specified or current position). This distinguishes it from sibling tools like mouse_click and mouse_scroll, so an agent can tell exactly what operation it performs.

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

Usage Guidelines3/5

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

Usage is implied by the verb and the tool name, but the description gives no explicit guidance about when to choose this over mouse_click or mouse_scroll, nor does it state any exclusions. An agent can infer the use case from context, but there is no direct routing.

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