Overview
The Scrapling MCP server allows AI models to:- Fetch web pages with stealth HTTP requests
- Extract content using CSS selectors
- Handle JavaScript-heavy sites with browser automation
- Bypass Cloudflare and other protections
- Process single or multiple URLs concurrently
- Return structured data in Markdown, HTML, or text format
Quick Start
Start the Server
HTTP Transport
For network access, use streamable-http transport:Server Configuration
The MCP server configuration is defined inserver.json:
Available Tools
The MCP server exposes six main tools:get
Make HTTP GET requests with stealth features
bulk_get
Fetch multiple URLs concurrently with GET requests
fetch
Use Playwright for JavaScript-heavy sites
bulk_fetch
Fetch multiple URLs with browser automation
stealthy_fetch
Advanced stealth with Cloudflare bypass
bulk_stealthy_fetch
Stealthy fetching for multiple URLs
Transport Modes
Stdio Transport (Default)
Used for local AI assistants:- Standard input/output communication
- Best for Claude Desktop, Cline, and other local clients
- No network configuration needed
HTTP Transport
Used for network-accessible services:- Streamable HTTP transport
- Accessible over network
- Configurable host and port
Response Format
All tools return a structuredResponseModel:
HTTP status code from the website
Extracted content as Markdown, HTML, or text
The URL that was requested
Installation Methods
PyPI (Recommended)
Docker (OCI)
Use Cases
AI-powered web research
AI-powered web research
Enable AI assistants to gather information from websites, extract articles, and process web content.
Automated data collection
Automated data collection
Let AI models collect data from multiple sources concurrently with bulk operations.
Content analysis
Content analysis
Extract and analyze web content using CSS selectors for targeted data extraction.
Protected site access
Protected site access
Use stealthy fetching to access Cloudflare-protected sites through AI workflows.
Next Steps
Setup Guide
Configure MCP server for your AI client
Capabilities
Explore available MCP tools and features