Skip to main content
Glama
Mohamedaslam227

WiFi PCAP Analyzer MCP

list_loaded_captures

List all loaded Wi-Fi captures in the current session to discover capture IDs and verify load, reload, or unload operations. Returns metadata such as path, size, and timestamps.

Instructions

List every capture registered in the current MCP server session.

Use this to discover available capture IDs or confirm load/reload/unload operations. It reads only in-memory metadata and never rescans capture contents. Decryption-key values are never returned.

Returns: Capture count and metadata for each capture, including path, size, modification/load times, revision, and decryption-key configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations present, the description carries the full burden of behavioral disclosure. It states that it 'reads only in-memory metadata and never rescans capture contents' and that 'decryption-key values are never returned,' giving meaningful behavioral context beyond the basic 'list' semantics.

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 well structured and front-loaded with the core purpose, followed by usage guidance, behavioral caveats, and return-value information. Every sentence adds value, and there is no fluff or repetition.

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

Completeness5/5

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

This is a simple, zero-parameter listing tool with an output schema already present. The description nonetheless adds useful context about what the output contains and what is deliberately omitted, making it fully complete for an agent to call correctly.

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?

This tool has zero parametersched, so parameter documentation is not needed. The baseline for a no-parameter tool is 4, and the description adds no unnecessary parameter information.

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 states a specific verb ('List') and a precise resource ('every capture registered in the current MCP server session'). It also clarifies the tool's role by mentioning discovery of capture IDs and confirmation of load/reload/unload operations, which helps distinguish it from sibling tools like get_capture_metadata or load_capture.

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

Usage Guidelines4/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: 'discover available capture IDs or confirm load/reload/unload operations.' It does not explicitly name alternatives or exclusions, but the context is clear enough for an agent to select it appropriately.

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