Skip to main content
Glama
zxcvbbq
by zxcvbbq

capture_xml_entry

Parse a bounded XML entry, such as an APMX display or filter tree, from saved API Monitor capture files to inspect and analyze filter data.

Instructions

Parse one bounded XML entry, such as an APMX display/filter tree.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
file_pathYes
max_bytesNo
entry_nameNofilter/display.xml

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.26

TDQS

C2.6/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 behavioral burden. It implies a read-only parse operation but does not disclose side effects, permissions, error behavior, bounding semantics, or any other behavioral traits.

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?

The description is a single front-loaded sentence with no wasted words. It is appropriately concise, though perhaps too terse for the number of parameters involved.

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 the description does not compensate for the 0% parameter schema coverage or lack of annotations. For a 5-parameter parsing tool, this is substantially incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 5 parameters with 0% description coverage, and the description mentions none of them. file_path, entry_name, limit, query, and max_bytes are all left undocumented in both schema and description.

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 clear verb ('Parse') and resource ('one bounded XML entry'), with a concrete example (APMX display/filter tree). It does not explicitly differentiate from siblings like capture_read_entry or capture_extract_entry, but the action is distinguishable.

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 tool versus alternatives, no prerequisites, and no exclusions. The only usage signal is the implied scope of parsing a single XML entry.

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