Skip to main content
Glama
zxcvbbq
by zxcvbbq

api_monitor_gui_screenshot

Capture an API Monitor window in the background as a PNG data URL, so you can inspect live GUI state without bringing the application to the foreground.

Instructions

Capture an API Monitor window in the background as a PNG data URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_widthNo
max_heightNo
window_titleNo
window_handleNo

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 must carry the behavioral burden. It usefully discloses that capture happens in the background and returns a PNG data URL, but says nothing about failure modes, which window is targeted by default, or permission requirements.

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. It is efficient, though the extreme brevity contributes to the gaps in parameter and usage coverage.

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?

Output schema exists, so return format need not be restated, but for a 4-parameter tool with zero schema coverage and no usage guidance the description is insufficient. It leaves window selection, sizing behavior, and when-to-use unspecified.

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?

All four parameters have 0% schema description coverage and the description compensates for none of them. It does not explain the window_title vs window_handle selection logic or how max_width/max_height affect the output, so the distinction between window-selection parameters is left to guesswork.

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 (capture), a clear resource (an API Monitor window), and the output format (PNG data URL). The phrase 'in the background' distinguishes it somewhat from foreground GUI tools, though it does not name a specific sibling alternative.

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 versus the many sibling capture tools (api_monitor_save_capture, api_monitor_gui_tree, api_monitor_gui_read). An agent must infer the use case entirely from the name and description.

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