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 Sonnets 3.7 and 4.5, using LLM Context.
# Install scrapling-fetch-mcp
uv tool install scrapling-fetch-mcp
# Install browser binaries (REQUIRED - large downloads)
uvx --from scrapling-fetch-mcp scrapling install
Important: The browser installation downloads hundreds of MB of data and must complete before first use. If the MCP server times out on first use, the browsers may still be installing in the background. Wait a few minutes and try again.
Add this configuration to your Claude Desktop MCP settings:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"scrapling-fetch": {
"command": "uvx",
"args": ["scrapling-fetch-mcp"]
}
}
}
After updating the config, restart Claude Desktop.
This MCP server provides two tools that Claude can use automatically when you ask it to fetch web content:
The AI decides which tool to use based on your request. You just ask naturally:
"Can you fetch the docs at https://example.com/api"
"Find all mentions of 'authentication' on that page"
"Get me the installation instructions from their homepage"
The tools support three levels of bot detection bypass:
Claude automatically starts with basic mode and escalates if needed.
Built with Scrapling for web scraping with bot detection bypass.
Apache 2.0
Please log in to share your review and rating for this 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 firecrawl
Provides web scraping, crawling, search, and structured data extraction for LLM clients through a Model Context Protocol server.
by brightdata
Provides real-time web access for AI models, delivering search, markdown‑ready scraping, and optional browser automation while bypassing geo‑restrictions, rate limits, and CAPTCHAs.
by tavily-ai
Provides real‑time web search, intelligent data extraction, structured website mapping, and systematic crawling through an MCP server, ready to be integrated with AI coding assistants and other tools.
by zcaceres
Fetches web content and returns it in HTML, JSON, plain‑text, or Markdown formats, optionally applying custom request headers.
by hyperbrowserai
Provides tools to scrape, extract structured data, crawl webpages, and access general‑purpose browser agents such as OpenAI CUA, Anthropic Claude Computer Use, and lightweight Browser Use via a Model Context Protocol server.
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.
{
"mcpServers": {
"Scrapling Fetch MCP": {
"command": "uvx",
"args": [
"scrapling-fetch-mcp"
]
}
}
}claude mcp add Scrapling Fetch MCP uvx scrapling-fetch-mcp