Skip to main content
Glama

Wayback Machine

archived_copy

Read-onlyIdempotent

Closest archived copy of a URL from the Wayback Machine (Internet Archive), nearest to a date if given. Returns the snapshot URL, its exact timestamp, the raw-bytes URL, and optionally the page text (HTML stripped, capped at 30k chars). Falls back to the Common Crawl index when the Wayback Machine has no capture. Use when a page is dead, changed, or walled and you need what it said.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe live URL (scheme optional).
timestampNoPreferred capture time, 4–14 digits: YYYY, YYYYMMDD or YYYYMMDDhhmmss. Closest capture wins; omit for the latest.
fetch_textNoAlso fetch the snapshot and return its visible text (default true).
task_contextYesOne sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate readOnly, openWorld, and idempotent behavior. The description adds worthwhile behavioral context beyond those annotations: it returns the raw-bytes URL, strips HTML and caps text at 30k chars, and falls back to Common Crawl when the Wayback Machine has no capture. These details help an agent predict what it will receive.

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?

Every sentence earns its place: the first defines the core function, the second lists return values, the third covers fallback behavior, and the fourth gives a concrete usage cue. It is compact, readable, and front-loaded with the most important information.

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?

With no output schema, the description compensates well by listing the returned fields: snapshot URL, exact timestamp, raw-bytes URL, and optional page text. It also handles the no-capture case via Common Crawl fallback. Minor gaps like exact response structure or behavior when no archive exists anywhere are not specified, but the description is sufficient for correct selection and invocation.

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, but the description adds meaningful parameter-related semantics: it explains that 'timestamp' selects the closest capture to a date, and that 'fetch_text' returns HTML-stripped text capped at 30k characters. This goes beyond the schema's terse parameter descriptions.

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 identifies the resource (archived copy of a URL from the Wayback Machine), the action (returns the closest snapshot with timestamp, raw-bytes URL, and optional page text), and its fallback behavior. It also differentiates itself from the sibling capture_history by emphasizing 'closest' single snapshot rather than a list of captures.

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 gives an explicit use case: 'Use when a page is dead, changed, or walled and you need what it said.' This clearly communicates when to use the tool, though it does not explicitly mention when not to use it or compare it to the capture_history sibling.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

archived_copy retrieves a single closest snapshot for a URL, while capture_history returns the full index of captures. Their purposes are clearly distinct and unlikely to be confused by an agent.

Naming Consistency5/5

Both tool names follow a consistent two-word noun phrase pattern using snake_case: archived_copy and capture_history. There is no mixing of styles or vague verb forms.

Tool Count3/5

Two tools is on the thin side for a domain like the Wayback Machine, but they cover the two most central read-only operations: retrieving a snapshot and querying capture history. The count is not extreme, but it feels minimal.

Completeness4/5

The tool set covers retrieving archived copies and exploring capture history well, with useful filtering and fallback behavior. Missing capabilities like submitting new captures or retrieving raw archived content directly are minor gaps for typical research use cases.