Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI agents to read web pages reliably, returning clean markdown content, hyperlinks, and metadata without navigation or ad noise.

README.md

cleanfetch

An MCP server that gives AI agents clean, reliable web reading. One job, done well.

| Tool | Input | Output | | --- | --- | --- | | fetch_clean | a URL | the page's main content as clean Markdown + title/byline (nav/ads/scripts stripped) | | extract_links | a URL | all hyperlinks with anchor text, classified internal/external | | extract_metadata | a URL | title, description, canonical, robots, Open Graph, JSON-LD, headings outline |

Why this exists

Agent builders constantly need to read web pages — but the generic fetchers choke on real-world HTML, return nav/ad noise, or get blocked. Reliability is the moat: a server that consistently returns clean, structured content is worth paying for. There are 14,000+ MCP servers listed and almost none are production-hardened or monetized — that's the opening.

Run it locally

npm install
npm run build
npm start          # runs on stdio
# or, no build step:
npm run dev

Sanity-check the tools with the MCP Inspector:

npm run inspect

Connect it to a client

Claude Desktop / Claude Code / Cursor — add to the MCP config:

{
  "mcpServers": {
    "cleanfetch": {
      "command": "node",
      "args": ["/Users/alexandre/projects/mcp-cleanfetch/dist/index.js"]
    }
  }
}

Then ask the agent: "Use fetch_clean to read https://example.com and summarize it."

Config (env vars)

  • CLEANFETCH_UA — override the User-Agent.
  • CLEANFETCH_TIMEOUT_MS — request timeout (default 15000).

---

Go-to-market (the actual point)

1. List it everywhere (free distribution). Submit to the MCP directories — this is the "App Store moment", and free-tier listings rank highest:

  • PulseMCP — https://www.pulsemcp.com/
  • Glama — https://glama.ai/mcp/servers
  • Smithery — https://smithery.ai/
  • Awesome MCP Servers (GitHub PR) — https://github.com/punkpeye/awesome-mcp-servers
  • The official MCP registry.

Publish to npm so npx mcp-cleanfetch works, and add a 30-second demo GIF to the README.

2. Harden the moat (what makes it paid-worthy). Roadmap, in order of value:

  • JS rendering fallback (Playwright) for client-side-rendered pages.
  • Rotating proxies + retry/anti-bot handling for sites that block plain fetch.
  • Caching + rate limiting.
  • batch_fetch (many URLs in one call), search (query → top results → clean content).

3. Monetize. Free tier = local stdio (what's here). Paid tier = a hosted HTTP MCP endpoint with an API key + usage billing:

  • Host the server over the Streamable HTTP transport (the SDK supports it).
  • Meter calls per key; bill with Stripe (Stripe shipped MCP/usage billing rails in 2026)

or a usage-billing layer. Typical pricing in this category: a free tier + ~$20–40/mo, or per-call credits. Realistic target: $0.5–3K MRR per server — cheap enough to run several.

4. Validate before hardening. Ship the free version, list it, and watch installs/usage. If a tool gets real pull, that's the signal to build the paid hosted tier. Don't build billing for a server nobody installs.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.