mcp-server-wayback
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WAYBACK_MCP_IA_ACCESS_KEY | No | Your Internet Archive S3 access key for higher rate limits. | |
| WAYBACK_MCP_IA_SECRET_KEY | No | Your Internet Archive S3 secret key for higher rate limits. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_availabilityA | Check if a URL has been archived by the Wayback Machine and return the closest snapshot. |
| lookup_snapshotsA | Return CDX snapshots for a URL, with optional date range and status-code filter. The Wayback Machine often crawls the same URL many times per day; raw CDX results would return one row per crawl. By default we collapse on the first 8 digits of the timestamp ( Override
|
| search_archiveA | Search Internet Archive collections (uploaded books, audio, video, software items) using Lucene query syntax. This is NOT a search over the Wayback Machine web crawl. It only returns items that someone has uploaded to archive.org as a discrete media item. Do NOT use this for:
Good uses: historical books, lecture recordings, archived films, software releases, podcast episodes, scanned magazines. Use Lucene fields when possible (e.g. |
| search_domainC | Find archived URLs under a domain or path prefix. Auto-detects matchType from input. |
| get_snapshot_contentA | Fetch and extract text content from an archived web page. Returns extracted text, word count, and extraction metadata. |
| get_item_metadataC | Fetch rich structured metadata for any Internet Archive item by its identifier. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| research_topic | Research a topic across Internet Archive collections and synthesise an overview. Takes a single free-text `topic` argument. Time ranges and sample sizes are interpreted from the topic phrasing by the model (e.g. "the moon landing in the 1960s" → year range 1960–1969). |
| track_site_changes | Narrate how an archived web page changed over time using sampled snapshots. Takes a single free-text `url` argument. Date ranges are interpreted from the surrounding context by the model when present. |
| audit_link_rot | Audit a list of URLs for link rot, surfacing archived alternatives. |
| setup_authentication | Walk the user through configuring Internet Archive API keys for higher rate limits. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: checking availability, fetching metadata, extracting text, looking up CDX snapshots, searching collections, and searching domains. No overlapping functionality.
All tool names follow a consistent verb_noun snake_case pattern (e.g., check_availability, get_item_metadata, lookup_snapshots), making them predictable and easy to distinguish.
Six tools is appropriate for a Wayback Machine / Internet Archive server, covering the main operations without being overwhelming or too sparse.
The set covers core read operations (check, get metadata, get content, lookup snapshots, search archive items, search domains). Missing a 'save page' tool and raw HTML retrieval, but covers expected use cases well.