by cyberchitta
Fetches HTML or markdown from bot‑protected websites, delivering plain‑text content that AI assistants can process.
Scrapling Fetch MCP provides an MCP server that enables AI assistants to retrieve text‑only content (HTML or markdown) from sites that employ anti‑automation measures. It bridges the gap between what a human sees in a browser and what an AI can access, focusing on low‑volume documentation and reference material.
uv
package manager:
uv tool install scrapling
scrapling install
uv tool install scrapling-fetch-mcp
{
"mcpServers": {
"Cyber-Chitta": {
"command": "uvx",
"args": ["scrapling-fetch-mcp"]
}
}
}
s-fetch-page
– retrieve full pages with optional pagination.s-fetch-pattern
– extract snippets matching a regex pattern with surrounding context.basic
, stealth
, and max‑stealth
allow trade‑offs between speed and success on heavily protected sites.s-fetch-page
supports pagination (start_index
, max_length
).s-fetch-pattern
returns matches with position data for follow‑up calls.Q: What sites can it handle? A: Sites that rely on JavaScript challenges, rate‑limiting, or basic bot detection. It may not work with sites requiring authentication or CAPTCHAs.
Q: How fast is the retrieval?
A: basic
mode returns in 1‑2 seconds, stealth
in 3‑8 seconds, and max‑stealth
may take 10+ seconds depending on protection.
Q: Can I scrape large documents?
A: Yes, use the pagination parameters of s-fetch-page
to fetch in chunks.
Q: Is this tool suitable for high‑volume scraping? A: No. It is engineered for low‑volume, on‑demand retrieval to support AI assistants.
Q: Do I need an API key? A: No external API key is required; the tool works directly against the target website.
An MCP server that helps AI assistants access text content from websites that implement bot detection, bridging the gap between what you can see in your browser and what the AI can access.
This tool is optimized for low-volume retrieval of documentation and reference materials (text/HTML only) from websites that implement bot detection. It has not been designed or tested for general-purpose site scraping or data harvesting.
Note: This project was developed in collaboration with Claude Sonnet 3.7, using LLM Context.
Requirements:
Install dependencies and the tool:
uv tool install scrapling
scrapling install
uv tool install scrapling-fetch-mcp
Add this configuration to your Claude client's MCP server configuration:
{
"mcpServers": {
"Cyber-Chitta": {
"command": "uvx",
"args": ["scrapling-fetch-mcp"]
}
}
}
This package provides two distinct tools:
Human: Please fetch and summarize the documentation at https://example.com/docs
Claude: I'll help you with that. Let me fetch the documentation.
<mcp:function_calls>
<mcp:invoke name="s-fetch-page">
<mcp:parameter name="url">https://example.com/docs</mcp:parameter>
<mcp:parameter name="mode">basic</mcp:parameter>
</mcp:invoke>
</mcp:function_calls>
Based on the documentation I retrieved, here's a summary...
Human: Please find all mentions of "API keys" on the documentation page.
Claude: I'll search for that specific information.
<mcp:function_calls>
<mcp:invoke name="s-fetch-pattern">
<mcp:parameter name="url">https://example.com/docs</mcp:parameter>
<mcp:parameter name="mode">basic</mcp:parameter>
<mcp:parameter name="search_pattern">API\s+keys?</mcp:parameter>
<mcp:parameter name="context_chars">150</mcp:parameter>
</mcp:invoke>
</mcp:function_calls>
I found several mentions of API keys in the documentation:
...
Protection Levels:
basic
: Fast retrieval (1-2 seconds) but lower success with heavily protected sitesstealth
: Balanced protection (3-8 seconds) that works with most sitesmax-stealth
: Maximum protection (10+ seconds) for heavily protected sitesContent Targeting Options:
start_index
and max_length
)search_pattern
and context_chars
)
s-fetch-page
basic
mode and only escalate to higher protection levels if neededs-fetch-page
s-fetch-pattern
when looking for specific information on large pagesApache 2
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "Scrapling Fetch MCP": { "command": "uvx", "args": [ "scrapling-fetch-mcp" ] } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server that provides web content fetching capabilities.
by microsoft
Provides fast, lightweight browser automation using Playwright's accessibility tree, enabling LLMs to interact with web pages through structured snapshots instead of screenshots.
by firecrawl
Provides powerful web scraping capabilities for LLM clients such as Cursor, Claude, and others, enabling content extraction, crawling, search, and batch processing through a Model Context Protocol server.
by zcaceres
Fetches web content and returns it in HTML, JSON, plain‑text, or Markdown formats, optionally applying custom request headers.
by tinyfish-io
Extract structured data from any web page by invoking AgentQL's extraction tool through a Model Context Protocol server, enabling AI assistants to retrieve and format web information on demand.
by xxxbrian
Provides realistic browser-like HTTP request capabilities with accurate TLS/JA3/JA4 fingerprints, enabling LLMs to bypass anti-bot measures and retrieve web content, plus conversion of PDF and HTML to Markdown for easier LLM processing.
by djannot
Scrape webpages and convert them to well‑formatted markdown, automatically handling cookies, captchas, paywalls and other interactive elements using AI‑driven vision analysis.
by Dumpling-AI
Provides comprehensive MCP services that integrate Dumpling AI’s data APIs, web scraping, document conversion, AI agents, knowledge‑base management, and secure JavaScript/Python execution.
by webscraping-ai
Provides Model Context Protocol tools for extracting, rendering, and querying web page content via WebScraping.AI services.