Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_tree

Read Rohitab's native API/filter tree, including checkbox states, in the background to inspect active filters without blocking the monitored app.

Instructions

Read Rohitab's native API/filter tree, including checkbox states, in the background.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
max_depthNo
tree_handleNo
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
Behavior2/5

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

No annotations are provided, so the description carries the full burden. 'Read' and 'in the background' imply a non-destructive, non-focus-stealing operation, but nothing is said about permissions, whether reads are truncated, or side effects.

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 sentence with the resource and scope front-loaded and zero filler. Nothing can be trimmed without losing information.

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

Completeness3/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, and 'in the background' covers the execution mode. However, for a four-parameter tool with zero schema coverage and no annotations, the description leaves genuinely useful gaps about what the parameters do.

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% and the description explains none of the four parameters. It gives no meaning for limit, max_depth, tree_handle, or window_title, and leaves ambiguous whether 'limit' truncates results or how 'max_depth' affects the returned tree.

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 ('Read') and a specific resource ('Rohitab's native API/filter tree'), plus scope ('including checkbox states'). It distinguishes itself from siblings like api_monitor_gui_tree_check (which toggles) and api_monitor_ui_tree by naming the native API/filter tree, though it never explicitly routes against them.

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?

Only 'in the background' hints at context (non-blocking / doesn't require foreground focus). There is no statement of when to use this versus api_monitor_gui_tree_check, api_monitor_ui_tree, or api_monitor_gui_read, and no prerequisites or exclusions.

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