OmniArchive-MCP
Allows archiving web pages to the Internet Archive's Wayback Machine, with queue management and retry logic.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OmniArchive-MCParchive https://example.com/article"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
KeepLink-MCP
A local daemon that lets AI agents archive web pages to the Wayback Machine in the background, so they don't block on Internet Archive's slow/rate-limited API.
Works with any MCP-compatible client (Kiro, Cursor, Claude Desktop, etc).
Version: 1.1.0
Why?
When AI agents do deep research, they read a lot of web pages. Those pages disappear all the time (link rot). Archiving them to the Internet Archive is the obvious fix — but IA's API is slow and rate-limited. If your agent calls it synchronously, it blocks for seconds or gets 429'd.
This tool solves that. The agent calls archive_url, gets a task ID back in milliseconds, and moves on. A background worker handles the actual archiving with proper retry logic.
Related MCP server: MIDAS
What it does
Exposes
archive_urlandget_archive_statusas MCP toolsQueues requests in local SQLite (survives restarts, no Redis needed)
Background worker retries with exponential backoff on 429/5xx
Deduplicates — same URL within 24h won't be re-archived
Binds to localhost only, no telemetry, nothing phones home
Architecture
AI Client (Kiro/Cursor)
│ stdio (MCP JSON-RPC)
▼
┌─────────────────────┐
│ MCP Server │ ← Separate process
│ (archive_url, │
│ get_archive_status)│
└────────┬────────────┘
│ httpx (localhost:19210)
┌────────▼────────────────────────┐
│ FastAPI Service + Worker │ ← Main process
│ ┌─────────┐ ┌──────────────┐ │
│ │ Routes │ │ Background │ │
│ │ /api/* │ │ Worker │ │
│ └────┬─────┘ └──────┬───────┘ │
│ │ │ │
│ ┌────▼───────────────▼───────┐ │
│ │ SQLite (WAL mode) │ │
│ └────────────────────────────┘ │
└──────────────────────────────────┘
│
│ waybackpy
▼
Internet Archive SPN2Two processes: the MCP server talks stdio with your AI client, and forwards requests over HTTP to the FastAPI service. The FastAPI service manages the queue and runs the background worker.
Getting started
You need Python 3.10+.
git clone https://github.com/keeplink/keeplink-mcp.git
cd keeplink-mcp
pip install -e ".[dev]"Start the backend service:
python -m keeplink_mcp.mainRuns on 127.0.0.1:19210 by default.
Run the tests:
pytest test/ -v # 84 tests, takes ~12sDocker
Run with Docker (v1.1.0+):
# Build the image
docker build -t keeplink-mcp .
# Run the container
docker run -d \
--name keeplink \
-p 19210:19210 \
-v keeplink-data:/app/data \
-e KEEPLINK_DB_PATH=/app/data/task.db \
-e KEEPLINK_LOG_FILE=/app/data/archiver.log \
keeplink-mcpOr use docker-compose:
# Start the service
docker-compose up -d
# View logs
docker-compose logs -f
# Stop the service
docker-compose downThe docker-compose.yml maps port 19210 and creates a persistent volume for the SQLite database.
MCP tools
archive_url
Queue a URL for archiving.
Param | Type | Required | |
url | string | yes | Must be http or https |
Returns: { "task_id": "...", "status": "pending", "url": "..." }
get_archive_status
Check on a task. Pass either task_id or url (at least one).
Param | Type | Required | |
task_id | string | no | The ID from archive_url |
url | string | no | Looks up the most recent task for this URL |
Returns the task status, archive URL (if done), error info (if failed).
get_archive_status_batch
Query status of multiple tasks in a single request (v1.1.0+).
Param | Type | Required | |
task_ids | string | no | Comma-separated task IDs (max 50 combined with urls) |
urls | string | no | Comma-separated URLs (max 50 combined with task_ids) |
Returns: { "results": [...], "total_requested": N, "total_found": M }
Each result contains the same fields as get_archive_status. Non-matching identifiers are silently omitted.
HTTP API Endpoints
Health Check
GET /api/health — Check service liveness, readiness, and operational stats (v1.1.0+).
Response (200 when healthy, 503 when degraded):
{
"liveness": true,
"readiness": true,
"readiness_error": null,
"stats": {
"queue_depth": 5,
"success_count": 42,
"failure_count": 3
}
}liveness: Alwaystrueif the server respondsreadiness:trueonly when database is reachable and worker has completed at least one poll cyclestats.queue_depth: Number of pending tasksstats.success_count: Successfully archived tasks (last 24h)stats.failure_count: Failed tasks (last 24h)
Batch Status Query
GET /api/status/batch — Query multiple tasks at once (v1.1.0+).
Query Parameters:
Param | Description |
| Comma-separated task IDs |
| Comma-separated URLs |
Constraints:
At least one parameter required
Combined total of identifiers ≤ 50
Returns HTTP 422 if constraints violated
Response:
{
"results": [
{
"task_id": "abc123",
"url": "https://example.com",
"status": "success",
"result_url": "https://web.archive.org/...",
"error_message": null,
"retry_count": 0,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:35:00Z"
}
],
"total_requested": 3,
"total_found": 1
}Hooking it up to your editor
You need both: the backend service running, AND the MCP server configured in your client.
Kiro — .kiro/settings/mcp.json:
{
"mcpServers": {
"keeplink": {
"command": "python",
"args": ["-m", "keeplink_mcp.mcp_server.main"]
}
}
}Cursor — .cursor/mcp.json:
{
"mcpServers": {
"keeplink": {
"command": "python",
"args": ["-m", "keeplink_mcp.mcp_server.main"]
}
}
}Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"keeplink": {
"command": "python",
"args": ["-m", "keeplink_mcp.mcp_server.main"]
}
}
}Don't forget to start the backend first: python -m keeplink_mcp.main
Configuration
Everything's controlled via env vars (prefix KEEPLINK_):
Core Settings
Variable | Default | What it does |
|
| Bind address |
|
| Port |
|
| Where the SQLite file lives |
|
| How many times to retry a failed archive |
|
| Base retry delay in seconds (doubles each time, 5min aligns with IA cooldown) |
|
| How many tasks to process per poll cycle |
|
| Seconds between queue polls |
| — | Your IA S3 key (optional, for higher rate limits) |
| — | Your IA S3 secret |
|
| Log verbosity |
|
| Log file location |
Rate Limiting (v1.1.0+)
Variable | Default | What it does |
|
| Max tokens in bucket (burst capacity). Set to |
|
| Seconds between token refills |
|
| Max seconds to wait for a token before retrying later |
Log Rotation (v1.1.0+)
Variable | Default | What it does |
|
| Max log file size before rotation (10 MB default) |
|
| Number of rotated log files to keep |
How it works under the hood
Agent calls
archive_url→ MCP server validates the URL → POSTs to FastAPIFastAPI checks if this URL was already submitted in the last 24h (dedup) → writes to SQLite → returns task ID
Worker picks up pending tasks every 5s → calls Internet Archive via waybackpy
Success? Stores the archive URL. Got 429/5xx? Backs off and retries. Got 403? Gives up.
License
MIT. See LICENSE.
Contributing
See CONTRIBUTING.md.
This server cannot be deployed
Maintenance
Related MCP Connectors
Shared copies of public web pages for AI agents. Search stored pages or fetch a URL.
Deterministic web intake and data utilities for autonomous agents.
Build agents to automate any background task. Works with your ChatGPT/Claude subscription.
- fastCRWOAuthio.github.us
Scrape, crawl, map & search the web. Open-source, self-hostable Rust crawler & search for AI agents.
Related MCP Servers
- AlicenseAqualityAmaintenanceWeb scraping, crawling, and structured data extraction for AI agents. 5 tools: scrape (clean markdown from any URL), crawl (entire sites), map (discover URLs), extract (structured JSON), and search. 833ms avg latency, single binary, self-hostable.81,051AGPL 3.0
- AlicenseNot gradedqualityCmaintenanceLocal-first AI agent for approval-gated automation and verifiable LLM workflows.1MIT
- AlicenseNot gradedqualityCmaintenanceA zero-config MCP server that lets AI agents fetch, read, and search live web pages without API keys or databases, using in-process BM25 retrieval.31 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables LLM agents to perform web search, scraping, and summarization outside their context window, receiving compact cited briefs via MCP while full pages are cached and viewable in a local web UI.MIT