Skip to main content
Glama
ExQA
by ExQA

get_traffic_entry_detail

Retrieve full details of a specific Charles Proxy traffic entry for drill-down inspection. Use an entry ID from a prior summary to examine request/response data, optionally including the raw body.

Instructions

Load one traffic entry detail view for drill-down inspection. Requires entry_id from a prior summary/query call. Use detail for one confirmed target, not bulk browsing. For history entries, pass recording_path from the summary. For live entries, pass capture_id from the summary. Keep include_full_body=false unless you specifically need the raw body text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceYes
entry_idYes
capture_idNo
max_body_charsNo
recording_pathNo
include_full_bodyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
detailYes
sourceYes
entry_idYes
warningsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that the tool requires a prior call and that include_full_body should be kept false unless needed, but it does not mention what the detail view contains, whether it is read-only, or any side effects. It is a read-like operation but that is not explicitly stated.

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?

The description is compact and front-loaded with the core purpose, followed by practical usage instructions. Every sentence adds value, and the guidance is easy to scan.

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

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema and the description covers the key usage flow, it is mostly complete. The main gap is the lack of explicit read-only/safety context and no mention of max_body_chars semantics, but the description is strong for a detail-inspection tool.

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

Parameters4/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. It explains the meaning of entry_id, recording_path, capture_id, and include_full_body in context, which is valuable. However, it does not explain max_body_chars or the source enum beyond the live/history distinction, leaving some parameters under-specified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool loads one traffic entry detail view for drill-down inspection, with a specific verb and resource. It distinguishes itself from bulk browsing and references prior summary/query calls, making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says when to use it ('for one confirmed target, not bulk browsing'), how to obtain required IDs ('from a prior summary/query call'), and how to handle live vs history entries. It also gives a clear directive on include_full_body, which is actionable guidance.

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