remove-paywall-mcp
Searches the Wayback Machine via the Internet Archive to retrieve archived copies of paywalled articles and extract clean text.
Click on "Install 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., "@remove-paywall-mcpremove paywall from https://www.wsj.com/articles/abc123"
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.
remove-paywall-mcp
MCP server that removes article paywalls by searching internet archives. Give it a URL, get back the article text.
How it works
You give it a paywalled article URL
It searches internet archives (Wayback Machine, archive.is, Google Cache) for an archived copy — archives don't have paywalls because they were crawled without login gates
It extracts the article body with readability-lxml, stripping navigation, ads, and sidebar cruft
It returns clean text with the title and snapshot URL
It also learns from every attempt — success rates per domain per archive source are tracked in a local SQLite database, and archive search order is re-ranked automatically.
Related MCP server: mcp-server-wayback
Install
# zero-install (recommended — works everywhere uvx is available)
uvx remove-paywall-mcp
# from PyPI
pip install remove-paywall-mcp
# from source
pip install git+https://github.com/jasval/remove-paywall-mcp.git
# Docker
docker run -i --rm remove-paywall-mcp
docker compose up -d # HTTP mode on port 8000Platform configs
Once installed, add this to your MCP client config:
OpenCode
{
"mcp": {
"remove-paywall": {
"type": "local",
"command": ["uvx", "remove-paywall-mcp"],
"enabled": true
}
}
}Claude Desktop
{
"mcpServers": {
"remove-paywall": {
"command": "uvx",
"args": ["remove-paywall-mcp"]
}
}
}LiteLLM
mcp_tools:
remove_paywall:
type: "stdio"
command: "uvx"
args: ["remove-paywall-mcp"]Docker (any client)
{"command": "docker", "args": ["run", "-i", "--rm", "remove-paywall-mcp"]}Tools
remove_paywall
Main tool. Removes a paywall from an article URL and returns clean article text.
Parameter | Type | Description |
| string | The paywalled article URL |
search_archives
Search all archive sources for snapshots without extracting content. Useful to see what's available.
Parameter | Type | Description |
| string | The article URL to search for |
get_from_archive
Fetch from a specific archive source.
Parameter | Type | Description |
| string | The article URL |
| string |
|
domain_info
Look up a domain in the knowledge base — paywall status, notes, and per-archive success rates.
Parameter | Type | Description |
| string | Domain name (e.g. |
add_domain
Register a domain in the knowledge base. Mark paywalled domains so archives are searched first, or non-paywalled domains so the live page is fetched directly.
Parameter | Type | Description |
| string | Domain name |
| boolean |
|
| string? | Optional description |
Domain knowledge base
Seeded with 30 well-known paywalled domains (NYT, WSJ, Bloomberg, Medium, etc.), stored in SQLite at ~/.remove-paywall-mcp/domains.db. Tracks every archive success/failure per domain and re-ranks archive search order automatically — domains where archive.is consistently fails won't waste time on it.
Env vars
Variable | Default | Description |
|
|
|
|
| Bind address (HTTP mode) |
|
| Port (HTTP mode) |
|
| Database directory |
Archive sources
Source | Priority | Notes |
Wayback Machine | 1 | CDX API, newest-first with dedup and HTML-only filtering |
archive.is mirrors | 2 | Tries newest/oldest across archive.is, archive.ph, archive.md |
Memento Time Travel | 3 | Aggregates ~20 archive APIs including national libraries |
Priority is dynamically re-ranked per domain based on historical success rates recorded in the knowledge base.
Architecture
MCP client (Claude/OpenCode/LiteLLM)
│ stdio or HTTP
▼
┌─────────────────┐
│ server.py │ MCPServer with 5 tools
│ (.tool decorator)│
└────────┬────────┘
│
┌────┴────┐
▼ ▼
┌────────┐ ┌──────────┐
│archives│ │ extractors│
│ .py │ │ .py │
│ │ │ │
│ wayback│ │readability│
│ archive│ │Beautiful │
│ .is │ │Soup │
│memento │ │ │
└───┬────┘ └──────────┘
│
▼
┌──────────────┐
│domain_store │
│ .py │
│ │
│ SQLite knows │
│ which domains│
│ have paywalls│
│ and which │
│ archives work│
│ best (Laplace│
│ smoothed) │
└──────────────┘License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceAn MCP server that extracts clean Markdown or HTML content from web pages by stripping away ads, navigation, and clutter. It offers tools to process URLs or raw HTML, returning structured metadata alongside the main article content.2MIT
- AlicenseAqualityAmaintenanceMCP server for the Internet Archive's Wayback Machine. Search archived snapshots, extract page text from a specific date, track how a site has changed over time, check if broken links are recoverable, and perform research across Internet Archive collections.63MIT
- Alicense-qualityDmaintenanceAn MCP server for intelligent web content extraction from JavaScript-heavy sites using single-file and trafilatura. It enables AI agents to fetch, render, and paginate through clean article content and metadata.17MIT
- Alicense-qualityDmaintenanceMCP server that enables AI agents to automatically pay for and access paywalled content via the x402 payment protocol.8MIT
Related MCP Connectors
Free remote MCP server for fetching public web pages through a rotating proxy pool.
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasval/remove-paywall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server