cleanfetch
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., "@cleanfetchfetch clean content from https://glama.ai"
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.
cleanfetch
An MCP server that gives AI agents clean, reliable web reading. One job, done well.
Tool | Input | Output |
| a URL | the page's main content as clean Markdown + title/byline (nav/ads/scripts stripped) |
| a URL | all hyperlinks with anchor text, classified internal/external |
| 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.
Related MCP server: markfetch-mcp
Run it locally
npm install
npm run build
npm start # runs on stdio
# or, no build step:
npm run devSanity-check the tools with the MCP Inspector:
npm run inspectConnect 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
Available Tools
3 toolsextract_linksExtract links from a pageA
Fetch a page and return all hyperlinks with their anchor text, each classified as internal or external. Useful for crawling and agent navigation.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page URL to fetch | |
| limit | No | Maximum number of links to return | |
| internalOnly | No | Only return links on the same origin |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description should disclose more behavioral details. It states it fetches a page and classifies links, but does not mention potential blocking, error handling, or the return format. Basic transparency is present but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences. The first sentence communicates the core functionality, and the second adds usage context. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description gives output details (links, anchor text, classification) but does not specify the return structure, pagination, or error behavior. Adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds no additional parameter-specific meaning beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches a page and returns hyperlinks with anchor text and internal/external classification. It distinguishes from siblings like extract_metadata and fetch_clean by focusing on links.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions 'Useful for crawling and agent navigation', providing clear context but does not explicitly state when to avoid using this tool or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_metadataExtract structured metadataA
Fetch a page and return structured metadata: title, description, canonical URL, robots, Open Graph tags, JSON-LD blocks, and a headings outline. Lets an agent analyze a page's structure without reading the whole body.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page URL to fetch |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It describes the read-only fetch and return of metadata but omits any potential limitations, error conditions, or side effects. Behavior is implied but not fully disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with clear structure: action first, then list of outputs, then purpose. No unnecessary words; front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a single required parameter and no output schema, the description sufficiently explains the tool's function and return content. It could be more complete by noting that output is in JSON or similar, but not essential.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The tool description adds no extra meaning beyond the schema's parameter description 'The page URL to fetch'. No additional context is provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches a page and returns structured metadata, listing specific elements (title, description, etc.). It distinguishes from siblings by implying extract_links and fetch_clean serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions analyzing structure without reading the whole body, which implies a use case. However, it provides no explicit when-to-use or when-not-to-use guidance, nor does it compare directly to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_cleanFetch page as clean MarkdownA
Fetch a web page and return its main article content as clean Markdown plus core metadata (title, byline). Strips navigation, ads, and scripts so an agent can read the page reliably.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page URL to fetch | |
| maxChars | No | Truncate the returned Markdown to this many characters |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions stripping navigation, ads, and scripts, but does not disclose potential issues like rate limits, authentication, error handling, or what happens if the page fails to parse correctly. The description is adequate but could be more transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no wasted words. It front-loads the main purpose and provides just enough detail for the agent to understand the tool's core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 parameters, no output schema), the description is fairly complete. It explains the purpose, what is stripped, and what is returned. However, for completeness, it could mention behavior on errors or redirects, but this is not critical.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (both parameters described). The description adds meaning by specifying the output format (clean Markdown) and included metadata (title, byline), which is not in the schema. This adds value beyond the parameter names and types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Fetch'), the resource ('web page'), and the output ('clean Markdown plus core metadata'). It also implicitly distinguishes from siblings like extract_links and extract_metadata by focusing on content extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the intended use case: fetching a page to get clean, readable content for an agent. It does not explicitly state when not to use it or mention alternatives, but the context of sibling tools provides some differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
extract_links - First observed
extract_metadata - First observed
fetch_clean
TDQS
Each tool targets a distinct aspect of web page analysis: links, metadata, and clean content. There is no functional overlap between extract_links, extract_metadata, and fetch_clean.
Tools follow a verb_noun pattern, but fetch_clean uses 'fetch' while the other two use 'extract'. This is a minor inconsistency but still clear and predictable.
Three tools is a well-scoped set for a clean fetching utility, covering the essential operations without unnecessary complexity.
The tools cover all key aspects of web page extraction: links, metadata, and clean content. No obvious gaps for the stated purpose of agent navigation and analysis.
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 Connectors
Clean Markdown and AI-readability scoring for any URL. Built for AI agents.
11Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Read any web page as clean Markdown for AI agents: fetch, search, metadata, links. SSRF-safe.
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Related MCP Servers
- AlicenseAqualityDmaintenanceConverts URLs and raw HTML to clean Markdown, enabling AI assistants to read web pages for summarization, analysis, or ingestion.2191MIT
- AlicenseAqualityCmaintenanceEnables AI agents to fetch any web page as clean markdown or screenshot it, turning URLs into LLM-ready context.211MIT

HatFetchofficial
AlicenseAqualityAmaintenanceEnables LLM agents to read any website by scraping and crawling into clean Markdown, automatically bypassing bot detection with residential proxies.321MIT- AlicenseAqualityCmaintenanceEnables AI agents to extract clean, structured web content (articles, tables, links, visual layouts) optimized for LLM token efficiency, with fast response times and optional JavaScript support.564MIT
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/belzorash/mcp-cleanfetch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server