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).
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.
What it does
- Exposes
archive_urlandget_archive_statusas MCP tools - Queues 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 SPN2
Two 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.main
Runs on 127.0.0.1:19210 by default.
Run the tests:
pytest test/ -v # 84 tests, takes ~12s
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).
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_):
| Variable | Default | What it does |
|---|---|---|
KeepLink_API_HOST |
127.0.0.1 |
Bind address |
KeepLink_API_PORT |
19210 |
Port |
KeepLink_DB_PATH |
./data/task.db |
Where the SQLite file lives |
KeepLink_MAX_RETRIES |
5 |
How many times to retry a failed archive |
KeepLink_BASE_BACKOFF |
60.0 |
Base retry delay in seconds (doubles each time) |
KeepLink_WORKER_CONCURRENCY |
1 |
How many tasks to process per poll cycle |
KeepLink_POLL_INTERVAL |
5.0 |
Seconds between queue polls |
KeepLink_IA_ACCESS_KEY |
— | Your IA S3 key (optional, for higher rate limits) |
KeepLink_IA_SECRET_KEY |
— | Your IA S3 secret |
KeepLink_LOG_LEVEL |
INFO |
Log verbosity |
KeepLink_LOG_FILE |
./data/archiver.log |
Log file location |
How it works under the hood
- Agent calls
archive_url→ MCP server validates the URL → POSTs to FastAPI - FastAPI 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.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file keeplink_mcp-1.0.0.tar.gz.
File metadata
- Download URL: keeplink_mcp-1.0.0.tar.gz
- Upload date:
- Size: 48.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ade6a988ebf1c163c44eefd3d5c698362a0204ce3b921526504759793417a58
|
|
| MD5 |
e27306e16faa2bdb7c2144993251f10c
|
|
| BLAKE2b-256 |
8a203c30f3dacd773be4d740165336a0f7095d5ee7898ba983b1709b35cd2d0d
|
Provenance
The following attestation bundles were made for keeplink_mcp-1.0.0.tar.gz:
Publisher:
publish.yml on libering/keeplink-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
keeplink_mcp-1.0.0.tar.gz -
Subject digest:
9ade6a988ebf1c163c44eefd3d5c698362a0204ce3b921526504759793417a58 - Sigstore transparency entry: 2280327275
- Sigstore integration time:
-
Permalink:
libering/keeplink-mcp@fe2b33fdb0948c5fbf8ea56539fb16b87aab0fab -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/libering
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@fe2b33fdb0948c5fbf8ea56539fb16b87aab0fab -
Trigger Event:
release
-
Statement type:
File details
Details for the file keeplink_mcp-1.0.0-py3-none-any.whl.
File metadata
- Download URL: keeplink_mcp-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cceeb282a7e81335b2932536497083ede9137a10ee482290e4c321ad918dba10
|
|
| MD5 |
6ba9fb41cc5087da4f3c35aa23db55f7
|
|
| BLAKE2b-256 |
7edf52a95ddfbf3ea22290349df413de69506d4420a058f8bddfcf58d56f89ff
|
Provenance
The following attestation bundles were made for keeplink_mcp-1.0.0-py3-none-any.whl:
Publisher:
publish.yml on libering/keeplink-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
keeplink_mcp-1.0.0-py3-none-any.whl -
Subject digest:
cceeb282a7e81335b2932536497083ede9137a10ee482290e4c321ad918dba10 - Sigstore transparency entry: 2280327283
- Sigstore integration time:
-
Permalink:
libering/keeplink-mcp@fe2b33fdb0948c5fbf8ea56539fb16b87aab0fab -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/libering
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@fe2b33fdb0948c5fbf8ea56539fb16b87aab0fab -
Trigger Event:
release
-
Statement type: