Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_key

Send a single navigation key to a specific Rohitab control in the background, enabling GUI actions without bringing the window to the foreground.

Instructions

Send one navigation key to an exact Rohitab control in the background.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes
modifiersNo
window_titleNo
control_handleYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.26

TDQS

C2.9/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose two real traits: the action targets a specific control handle and runs 'in the background' (no window activation/focus stealing), and that it sends exactly one key per call. It says nothing about permissions, failure modes when the handle is stale, or how modifiers interact, leaving meaningful gaps.

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?

A single tight sentence with the action front-loaded and no filler. It is efficient, though the brevity edges into under-specification rather than deliberate conciseness.

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

Completeness2/5

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

An output schema exists, so return values need not be explained. However, for a no-annotation GUI-action tool with 0% parameter coverage and four sibling GUI tools, the definition omits control-handle acquisition, foreground/background implications, and whether the key is a literal character or a named key — too much is missing 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?

Schema description coverage is 0% across 4 parameters, so the description must compensate and largely does not. It loosely maps to 'key' (the navigation key) and 'control_handle' ('exact Rohitab control'), but 'modifiers' and 'window_title' are undocumented anywhere, and no accepted key values or format are given.

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

Purpose4/5

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

The description gives a specific verb+resource ('Send one navigation key') and names the target ('an exact Rohitab control'), which distinguishes it from siblings like api_monitor_gui_click_point or api_monitor_gui_scroll that operate on coordinates or scroll rather than discrete keys. It stops short of explicitly naming or contrasting with those siblings, so it is clear but not sibling-differentiating.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus the many other GUI-interaction siblings (gui_action, gui_click_point, gui_select, gui_select_option, window_control). The phrase 'one navigation key' implies a single-key-per-call scope, but no conditions, prerequisites, or alternatives are stated.

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