Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_select

Select a Rohitab list row by index or text without foregrounding the app, enabling background GUI automation for API monitoring workflows.

Instructions

Select a Rohitab list row by index or text without foregrounding the app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNo
row_indexNo
list_handleYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.26

TDQS

B3/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 trait: the app is not brought to the foreground, so the call is non-disruptive. It says nothing about prerequisites (the list must exist and be populated), side effects of selection (event firing, highlight changes), or failure behavior, which leaves real gaps for a GUI 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?

A single front-loaded sentence with zero filler; the action, target, and selection modes all appear before the non-foregrounding qualifier. Nothing is wasted.

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?

For a GUI automation tool with a required, undocumented handle parameter and no annotations, the description is thin. An output schema exists so return values need not be described, but the agent still lacks guidance on sourcing list_handle (e.g., via api_monitor_gui_lists) and on selection side effects.

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 mostly does not. 'By index or text' loosely maps to row_index and query, but the required list_handle parameter is never explained, and nothing says how it is obtained or what happens when both query and row_index are supplied.

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 resource (a Rohitab list row) plus the two selection mechanisms (by index or text), so an agent can tell what the tool does without opening the schema. It does not, however, distinguish itself from the nearby sibling api_monitor_gui_select_option, which an agent could plausibly confuse it with.

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 explicit when-to-use or when-not-to-use guidance and no named alternative among the many gui_* siblings. The only implicit signal is the phrase 'without foregrounding the app', which hints at a background/non-disruptive scenario but never states it as a selection rule.

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