Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_select_option

Select a Rohitab combo-box option by control ID and value without focusing the window, enabling background GUI automation in API Monitor.

Instructions

Select a native Rohitab combo-box option without focusing the window.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
optionYes
control_idYes
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?

No annotations are provided, so the description carries the full behavioral burden. It does disclose one genuinely useful trait not available in structured data: the window is not focused during selection. However, it says nothing about permissions, error behavior for invalid control_id/option, or the effect on the underlying application state for what is clearly a mutation.

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 front-loaded sentence with no filler, and the key behavioral constraint (no window focus) is placed where it will be read. It is efficient, though it is arguably too terse for the amount of ambiguity it leaves.

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 described, but for a no-annotation mutation tool with 0% parameter coverage the description is materially incomplete: no parameter meaning, no usage context, no failure modes. It covers the resource and one behavior trait and stops.

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%, so the description must compensate and it does not. None of the three parameters (control_id, option, window_title) are explained, and the default empty window_title is left ambiguous. Only the word 'option' in the prose loosely maps to one parameter.

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?

States a specific verb ('Select') and a specific resource type ('native Rohitab combo-box option'), which is enough to distinguish it from generic siblings like api_monitor_gui_click_point or api_monitor_gui_key. It doesn't explicitly name the alternative (api_monitor_gui_select) or the condition that selects it, so it stops short of full sibling differentiation.

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 when-to-use guidance at all. With close siblings such as api_monitor_gui_select and api_monitor_gui_tree_check in the roster, the agent has no statement of when this combo-box tool is preferred over them. The only hint is the implicit 'Rohitab combo-box' applicability.

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