Skip to main content
Glama
zxcvbbq
by zxcvbbq

capture_calls_around

Extract a bounded set of raw call records around a specific saved call to inspect neighboring calls and context for API troubleshooting.

Instructions

Return a bounded raw call-record window around one saved call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
afterNo
beforeNo
file_pathYes
include_dataNo
record_indexYes
process_indexYes
max_data_bytesNo
resolve_definitionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.26

TDQS

C2.8/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. 'Bounded' and 'raw' hint at truncated, unprocessed output, but the description never states it is read-only, what permissions are needed, what 'bounded' means in practice, or how data is limited.

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 the verb and the scoping constraint up front and zero wasted words.

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 an 8-parameter tool with no annotations and 0% schema description coverage, the description is far too thin. It omits the meaning of most parameters and the destructive/safety profile.

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% across 8 parameters, and the description adds almost nothing. 'Bounded' loosely gestures at before/after and 'around one saved call' hints at record_index, but file_path, process_index, include_data, max_data_bytes, and resolve_definitions are left entirely unexplained.

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 (Return) and resource (raw call-record window) with a scoping qualifier (around one saved call), which sets it apart from broad siblings like capture_call_records or capture_search_calls. It is clear but never explicitly names or contrasts an alternative, 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, no prerequisites, and no mention of alternatives such as capture_call_records. The agent must infer the context entirely from the phrase 'around one saved call'.

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