Skip to main content
Glama

archive

Read-only

List the contents of a .zip, .tar.gz, .7z, or .rar file, then extract a specific member as Markdown. Use this to inspect compressed bundles and retrieve only the file you need.

Instructions

Browses a compressed archive — "open / list / what is in this .zip, .tar.gz, .7z, .rar", then "extract member X from it". Not a web page fetcher — a URL to a page goes to fetch. Call archive{source:"https://…/data.zip"} for the member listing (names and sizes, nothing extracted); then archive{source:"…", member:"docs/readme.md"} converts that one member to Markdown. 0 members = an empty archive; an ERROR item = the archive could not be fetched or opened, or the member was refused (traversal, symlink, size).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
memberNoOmit to get the SAFE member listing (names + sizes; nothing is extracted). Give one member name from that listing to fetch just that member, converted to Markdown.
sourceYesURL or local path of a .zip / .tar(.gz/.bz2/.xz) / .7z / .rar archive.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Despite readOnlyHint=true, the description goes well beyond annotations: it discloses that listing extracts nothing, that member retrieval converts to Markdown, that 0 members means an empty archive, and that an ERROR item represents fetch/open/refusal failures including traversal, symlink, and size cases. This gives the agent accurate expectations for edge cases.

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 dense but every sentence earns its place: it states the resource, gives example phrasings, excludes the sibling tool, defines the two-phase call pattern, and enumerates error/empty outcomes. No filler or redundant restatement is present.

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?

For a two-parameter tool with rich annotations, this is complete. There is no output schema, but the description explains the return semantics well enough: listing returns names and sizes, member returns Markdown, 0 members means empty, and ERROR signals the failure modes. An agent has everything needed to invoke it 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?

Schema coverage is 100%, so the baseline is 3. The description adds meaningful workflow semantics beyond the schema by establishing the ordering of listing first and then member selection, and it reinforces the safety distinction between the two modes. This is a modest but real enhancement over the schema text.

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 opens with a specific verb plus resource ('Browses a compressed archive'), then clarifies it is not a web page fetcher by naming the destination for URLs. It clearly distinguishes itself from the fetch sibling while defining both listing and member-extraction modes.

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?

It explicitly says a URL to a page goes to fetch, naming the alternative tool and the condition that routes there. It also provides a concrete two-step usage pattern: call with source first for the listing, then with member to convert that entry to Markdown.

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

Deploy Server

Other Tools