- Explore MCP Servers
- scrapling-fetch-mcp
Scrapling Fetch Mcp
What is Scrapling Fetch Mcp
scrapling-fetch-mcp is an MCP server designed to assist AI assistants in accessing text content from websites that implement bot detection, effectively bridging the gap between browser visibility and AI accessibility.
Use cases
Use cases include fetching and summarizing documentation from technical websites, extracting specific information like API keys from large documents, and assisting in research by accessing protected content efficiently.
How to use
To use scrapling-fetch-mcp, install it via the uv package manager, configure it in your Claude client’s MCP server settings, and utilize its tools like s-fetch-page for complete page retrieval or s-fetch-pattern for content extraction based on regex patterns.
Key features
Key features include support for fetching complete web pages with pagination, extracting specific content using regex, adjustable protection levels (basic, stealth, max-stealth), and targeting options for content retrieval.
Where to use
scrapling-fetch-mcp is ideal for documentation retrieval, reference materials, and other text-based content from websites with anti-automation measures, particularly in environments where AI assistants are employed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Scrapling Fetch Mcp
scrapling-fetch-mcp is an MCP server designed to assist AI assistants in accessing text content from websites that implement bot detection, effectively bridging the gap between browser visibility and AI accessibility.
Use cases
Use cases include fetching and summarizing documentation from technical websites, extracting specific information like API keys from large documents, and assisting in research by accessing protected content efficiently.
How to use
To use scrapling-fetch-mcp, install it via the uv package manager, configure it in your Claude client’s MCP server settings, and utilize its tools like s-fetch-page for complete page retrieval or s-fetch-pattern for content extraction based on regex patterns.
Key features
Key features include support for fetching complete web pages with pagination, extracting specific content using regex, adjustable protection levels (basic, stealth, max-stealth), and targeting options for content retrieval.
Where to use
scrapling-fetch-mcp is ideal for documentation retrieval, reference materials, and other text-based content from websites with anti-automation measures, particularly in environments where AI assistants are employed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Scrapling Fetch MCP
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.
Intended Use
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.
Installation
-
Requirements:
- Python 3.10+
- uv package manager
-
Install dependencies and the tool:
uv tool install scrapling scrapling install uv tool install scrapling-fetch-mcp
Setup with Claude
Add this configuration to your Claude client’s MCP server configuration:
{
"mcpServers": {
"Cyber-Chitta": {
"command": "uvx",
"args": [
"scrapling-fetch-mcp"
]
}
}
}
Available Tools
This package provides two distinct tools:
- s-fetch-page: Retrieves complete web pages with pagination support
- s-fetch-pattern: Extracts content matching regex patterns with surrounding context
Example Usage
Fetching a Complete Page
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...
Extracting Specific Content with Pattern Matching
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: ...
Functionality Options
-
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 sites
-
Content Targeting Options:
- s-fetch-page: Retrieve entire pages with pagination support (using
start_indexandmax_length) - s-fetch-pattern: Extract specific content using regular expressions (with
search_patternandcontext_chars)- Results include position information for follow-up queries with
s-fetch-page
- Results include position information for follow-up queries with
- s-fetch-page: Retrieve entire pages with pagination support (using
Tips for Best Results
- Start with
basicmode and only escalate to higher protection levels if needed - For large documents, use the pagination parameters with
s-fetch-page - Use
s-fetch-patternwhen looking for specific information on large pages - The AI will automatically adjust its approach based on the site’s protection level
Limitations
- Designed only for text content: Specifically for documentation, articles, and reference materials
- Not designed for high-volume scraping or data harvesting
- May not work with sites requiring authentication
- Performance varies by site complexity
License
Apache 2
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










