CleanPage
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., "@CleanPageExtract clean, structured content from 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.
CleanPage
A paid MCP tool that turns any URL into clean, structured, agent-optimized content. Agents pay $0.02 USDC per successful call via x402 on Base — no accounts, no API keys, no subscriptions.
clean_page(url) → { title, clean_markdown, plain_text, structured_facts,
metadata, links, images, quality_score, extraction_notes }Built for Cloudflare Workers. Full TypeScript. No paid infra required beyond a domain and a Base wallet address.
How agents use this
Discover the service for free — no payment needed for any of this:
GET /.well-known/agent.json— machine-readable capability cardGET /.well-known/mcp.json— MCP connection + pricing manifestGET /llms.txt— plain-text summary for LLM crawlersMCP tools
health,list_capabilities,pricing(all free)
Connect an MCP client to
https://<your-domain>/mcpover Streamable HTTP:{ "mcpServers": { "cleanpage": { "url": "https://<your-domain>/mcp", "transport": "streamable-http" } } }Call
clean_pagewith no payment attached first:POST /mcp { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "clean_page", "arguments": { "url": "https://example.com/article" } } }The response is HTTP 402 with an
acceptsarray describing exactly what payment is required (amount, network, asset, payee address).Sign and retry. Construct a USDC
transferWithAuthorization(EIP-3009) payment payload for the requested amount, base64-encode it, and retry the same request with anX-PAYMENTheader. Most x402 client libraries (e.g.x402-fetch,x402-axios) do steps 3–4 for you automatically.Get the result. On success, the response carries the full JSON result plus an
X-PAYMENT-RESPONSEheader with the settlement transaction hash. Failed extractions (paywalls, bot-blocks, empty pages) are never charged — settlement only happens after a successful extraction.
Full protocol details: see /llms.txt and /.well-known/mcp.json once deployed, or the "For agents" section of the landing page.
Related MCP server: x402-md-mcp
Project structure
cleanpage/
├── src/
│ ├── index.ts # Hono app: routes, x402 payment gate, static asset fallback
│ ├── types.ts # Shared types (Env, CleanPageResult, etc.)
│ ├── config.ts # Reads env vars into a typed config object
│ ├── mcp/
│ │ ├── server.ts # JSON-RPC 2.0 / MCP method dispatcher (stateless)
│ │ └── tools.ts # Tool schemas + descriptions (clean_page, health, ...)
│ ├── extraction/
│ │ ├── extractor.ts # Core pipeline: fetch → Readability → markdown/links/metadata
│ │ └── enrichment.ts # Optional cheap LLM pass for structured_facts
│ ├── payments/
│ │ └── x402.ts # x402 payment requirements, facilitator verify/settle
│ └── middleware/
│ └── limits.ts # KV-backed rate limiting + call/revenue analytics
├── public/ # Static assets served at the Worker's root
│ ├── index.html # Landing page (live demo, pricing, docs, for-agents)
│ ├── robots.txt # Explicitly welcomes agent/LLM crawlers
│ ├── llms.txt # Plain-text agent-facing summary
│ └── .well-known/
│ ├── agent.json # Agent discovery/capability card
│ └── mcp.json # MCP connection + pricing manifest
├── wrangler.toml # Cloudflare Workers config (bindings, vars)
├── package.json
├── tsconfig.json
└── .env.example # Documents every config valueArchitecture notes
MCP transport. The MCP Streamable HTTP transport is implemented directly in src/mcp/server.ts as a stateless JSON-RPC 2.0 dispatcher (initialize, tools/list, tools/call, ping), rather than via the official SDK's Node-oriented HTTP transport class. This is a deliberate choice for correctness on Cloudflare Workers: the SDK's transport targets Node's http.IncomingMessage/ServerResponse, which Workers doesn't have. The dispatcher here follows the same wire protocol (JSON-RPC over a single POST endpoint, one server-scoped session per request) so any standard MCP client can connect to it. If you later run this on a Node-based host, you can swap in @modelcontextprotocol/sdk's StreamableHTTPServerTransport directly.
Payment gating. POST /mcp peeks at the parsed JSON-RPC body: only tools/call requests naming clean_page are payment-gated (src/index.ts); health, list_capabilities, pricing, and all non-tool-call methods (initialize, tools/list, etc.) pass straight through, rate-limited but free. This keeps the discovery surface fully open to agents while gating only the one paid capability.
Settlement timing. Payment is verified before extraction runs, but settled (broadcast on-chain) only after extraction succeeds. If extraction fails, the agent's payment authorization is simply discarded — nothing is charged.
No private key required. Because USDC on Base supports EIP-3009 meta-transactions, the resource server never holds a private key. PAYMENT_ADDRESS is a public wallet address; the facilitator submits the signed authorization on-chain and sponsors gas.
Extraction engine. @mozilla/readability (the engine behind Firefox Reader Mode) does the core content extraction, running against a DOM built with linkedom (a fast, dependency-light DOM implementation that works in Workers — jsdom does not). A small hand-written HTML→Markdown walker converts the extracted fragment to markdown, since no existing markdown-conversion library is both Workers-compatible and DOM-based. Heuristics before and after extraction catch common failure modes: paywall markers, bot-check pages, and JS-only empty shells all produce typed errors instead of low-quality output.
Optional LLM enrichment. structured_facts is populated only when the caller passes options.extract_facts: true, and only if ENABLE_LLM_ENRICHMENT=true and ANTHROPIC_API_KEY is set. It's off the critical path — if the enrichment call fails or is disabled, clean_page still returns a complete result with an empty structured_facts array and a note explaining why. There's no additional charge for using it.
Rate limiting & analytics. Both are implemented with a single KV namespace: a fixed 1-minute-window counter per client IP for free-tier calls, and a running JSON counter object for total calls / successes / failures / revenue, exposed read-only at GET /analytics.
Required services / infrastructure
Component | What you need | Where to get it |
Hosting | Cloudflare Workers (with Static Assets) | dash.cloudflare.com — free tier works to start |
Domain + DNS | A domain proxied through Cloudflare | Any registrar; add to Cloudflare, point at the Worker |
Wallet | A Base wallet address (public address only) | Any EVM wallet — Coinbase Wallet, MetaMask, etc. |
x402 facilitator | Verifies/settles payments |
|
KV namespace | Rate limiting + analytics storage |
|
LLM (optional) | Structured fact extraction | Anthropic API key, only if |
No database, no queue, no separate backend — everything runs in the one Worker.
Deployment (step by step)
# 1. Install dependencies
npm install
# 2. Create the KV namespace used for rate limiting + analytics
npx wrangler kv namespace create CLEANPAGE_KV
npx wrangler kv namespace create CLEANPAGE_KV --preview
# Copy the two returned IDs into wrangler.toml under [[kv_namespaces]]
# 3. Edit wrangler.toml [vars]:
# - PAYMENT_ADDRESS → your Base wallet address
# - PUBLIC_BASE_URL → your real domain, e.g. https://cleanpage.yourdomain.com
# - X402_NETWORK → "base-sepolia" while testing, "base" for mainnet
# Also update the same URLs/addresses in:
# - public/.well-known/agent.json
# - public/.well-known/mcp.json
# - public/llms.txt
# - public/index.html (og:url, structured data, MCP config example)
# 4. (Optional) enable LLM fact extraction
npx wrangler secret put ANTHROPIC_API_KEY
# 5. Type-check
npm run typecheck
# 6. Deploy
npm run deploy
# 7. Point your domain at the Worker (Cloudflare dashboard → Workers →
# your worker → Triggers → Custom Domains), or use the workers.dev
# subdomain Wrangler prints after deploy.Local development
npm run dev
# Worker runs at http://localhost:8787
# Try: curl -X POST http://localhost:8787/mcp -H "Content-Type: application/json" \
# -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Going from testnet to mainnet
Switch
X402_NETWORKfrombase-sepoliatobaseinwrangler.toml.Switch
X402_FACILITATOR_URLto a mainnet-capable facilitator (confirm your chosen facilitator supports Base mainnet settlement — verify current facilitator options, as this ecosystem is still young and options change).Re-deploy.
Environment variables
See .env.example for the full annotated list. Summary:
Variable | Required | Default | Purpose |
| yes | — | Base wallet address receiving USDC |
| yes |
|
|
| yes |
| Facilitator used for verify/settle |
| yes |
| Price per successful |
| yes | — | Your deployed URL, used in discovery files |
| no |
| Free-tier calls per IP per minute |
| no |
| Enables |
| no |
| Model used for enrichment |
| only if enrichment enabled | — | Secret; set via |
Example MCP client configuration
{
"mcpServers": {
"cleanpage": {
"url": "https://cleanpage.yourdomain.com/mcp",
"transport": "streamable-http"
}
}
}Example tool call and response shape
Request:
{
"jsonrpc": "2.0", "id": 1, "method": "tools/call",
"params": {
"name": "clean_page",
"arguments": { "url": "https://example.com/article", "options": { "extract_facts": true } }
}
}Successful response (after payment) — result.content[0].text is a JSON string shaped like:
{
"title": "Article title",
"clean_markdown": "# Article title\n\nBody content as markdown…",
"plain_text": "Body content as plain text…",
"structured_facts": [
{ "claim": "…", "category": "fact", "confidence": 0.82 }
],
"metadata": {
"author": "Jane Doe", "published_date": "2026-08-01T00:00:00Z",
"site_name": "Example", "language": "en",
"word_count": 812, "reading_time_minutes": 4,
"fetched_at": "2026-09-17T12:00:00.000Z",
"final_url": "https://example.com/article", "status_code": 200
},
"links": [{ "url": "https://example.com/other", "text": "related", "type": "internal" }],
"images": ["https://example.com/hero.jpg"],
"quality_score": 85,
"extraction_notes": []
}Error codes
| Meaning | Retryable |
| Malformed, non-http(s), or a blocked internal address | no |
| Non-2xx response, non-HTML content, or oversized page | sometimes |
| Page didn't respond within the timeout | yes |
| Subscription/metered paywall detected | no |
| Bot-check/CAPTCHA or JS-only empty shell | no |
| No substantial article content found | no |
| Unexpected parser error | no |
Failed extractions always return before payment settlement, so they're never charged.
Known limitations
JavaScript-rendered pages: extraction fetches raw HTML and does not execute JavaScript, so client-side-rendered SPAs with no server-rendered content will return
EMPTY_CONTENTorBLOCKED_BY_SITE. Adding a headless-browser rendering fallback (e.g. via Cloudflare Browser Rendering) is the natural next step if this matters for your traffic.Facilitator dependency: payment verification and settlement depend on the configured x402 facilitator's uptime.
x402.org/facilitatoris a good default for development; evaluate production facilitators for reliability guarantees before scaling mainnet volume.Rate limiting is best-effort: the KV-based counter has a small race window under concurrent bursts from the same IP; it's adequate abuse protection, not a hard guarantee.
This server cannot be deployed
Maintenance
Related MCP Connectors
Pay-per-call web scraping for AI agents via x402 on Base USDC. Six tools, no signup.
Pay-per-request webpage-to-Markdown extraction for AI agents. $0.005 USDC via x402 on Solana.
Market data and web intelligence for AI agents, paid per call in USDC on Base via x402.
Web search and URL-to-markdown for agents. Pay per call in USDC on Base, no signup.
Related MCP Servers
- AlicenseAqualityCmaintenancePay-per-use clean web reader for AI agents. URL in, markdown plus metadata out, in milliseconds. Settled per-call in USDC over x402 — no signup, no API keys.182 npm2MIT
- AlicenseNot gradedqualityDmaintenanceEnables extracting clean Markdown from any webpage by paying $0.005 USDC per call via the x402 protocol, with automatic wallet-based payment settlement.6 npmMIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to extract structured JSON data from web pages using presets or custom JSON schemas, with confidence scores and source snippets, paid per call via USDC on Base.-
- AlicenseNot gradedqualityBmaintenanceWebsite intelligence tools for AI agents. Ten pay-per-call tools via x402 micropayments (USDC on Base) — no accounts, no API keys.2MIT