Skip to main content
Glama
ExQA
by ExQA

reverse_stop_live_analysis

Stop a reverse live-analysis session and optionally restore recording to continue capturing traffic.

Instructions

Stop a reverse live-analysis session and optionally restore Charles recording.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
live_session_idYes
restore_recordingNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description bears the full burden of behavioral disclosure. It states that the session is stopped and recording may be restored, but it does not disclose side effects such as whether session data is discarded, whether the action is reversible, whether an active session is required, or what happens to in-flight captures. This is too thin for a mutating operation.

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 a single sentence that front-loads the primary action ('Stop a reverse live-analysis session') and then mentions the optional restore behavior. Every word contributes meaning, with no repetition or filler.

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?

With no annotations, 0% schema description coverage, and only a short one-sentence description, the agent is underinformed about side effects and prerequisites for what is likely a state-changing operation. The presence of an output schema covers return-value details, and the tool is relatively simple, so this is minimally viable but still leaves behavioral questions unanswered.

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

Parameters3/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 maps the live_session_id parameter to the 'live-analysis session' concept and the restore_recording parameter to 'restore Charles recording,' adding some meaning beyond the raw schema. However, it does not explain the session ID format, how to obtain it, or what exactly restoring recording entails when false, leaving important gaps.

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 uses the explicit verb 'Stop' with a specific object, 'reverse live-analysis session,' and mentions the optional 'restore Charles recording' action. This makes it clear which operation is performed and differentiates it from reverse_start_live_analysis and other reverse-family tools, though it does not explicitly distinguish itself from stop_live_capture.

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

Usage Guidelines3/5

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

The verb 'Stop' implies this tool is for ending a reverse live-analysis session, likely one started by reverse_start_live_analysis. However, the description gives no explicit when-to-use guidance, no exclusions, and does not mention alternatives such as stop_live_capture for non-reverse sessions, leaving the routing decision to inference.

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