Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_read

Read a single Rohitab GUI control's content without focusing or raising its window. Use it to inspect control text or values in API Monitor captures.

Instructions

Read one Rohitab GUI control without focusing or raising the window.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
handleNo
max_charsNo
class_nameNo
control_idNo
window_titleNo

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 burden, and it does disclose one meaningful behavioral trait: it reads without focusing or raising the window, which matters for non-intrusive GUI automation. However it says nothing about permissions, failure modes when the control is not found, or what kind of value is read (text vs. state).

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 core action front-loaded and no filler. It is efficient, though it is terse to the point of leaving structured-field gaps unfilled elsewhere.

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, but for a 6-parameter tool with zero annotation and zero schema-description coverage the description omits how to identify the control and what happens on failure. The gaps are too large for the complexity involved.

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 six parameters (title, handle, class_name, control_id, window_title, max_chars) and the description supplies no parameter semantics beyond implying that a single control is targeted. It does not explain the relationship or precedence among handle, control_id, class_name, and window_title, nor what max_chars truncation means.

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 ('Read one Rohitab GUI control') and a scope qualifier ('one', 'without focusing or raising the window'). It is clear what it does, though it does not distinguish itself from siblings like api_monitor_gui_tree, api_monitor_gui_lists, or api_monitor_window_control that also inspect GUI state.

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 statement of when to use this tool versus the many GUI-oriented siblings (gui_tree, gui_lists, gui_select, window_control), nor any precondition such as whether the target window must already exist or be attached. Usage must be inferred entirely from the name.

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