Skip to main content
Scrapling’s MCP server provides six powerful tools for web scraping operations. Each tool is optimized for different use cases and protection levels.

Available Tools

get

Make stealth HTTP GET requests to fetch web pages. Best for: Low to mid protection levels, simple HTTP requests Parameters:
string
required
The URL to request
string
default:"chrome"
Browser to impersonate (chrome, firefox, safari, etc.)
string
default:"markdown"
Output format: markdown, html, or text
string
CSS selector to extract specific content
boolean
default:"true"
Extract only content within <body> tag
object
Custom HTTP headers
object
Cookies to include in request
string
Proxy URL (format: “http://user:pass@host:port”)
number
default:"30"
Request timeout in seconds
boolean
default:"true"
Use real browser headers
Example usage:

bulk_get

Fetch multiple URLs concurrently with HTTP GET requests. Best for: Scraping multiple pages efficiently Parameters: Same as get, but accepts urls (array) instead of url (string).
array[string]
required
List of URLs to fetch concurrently
Example usage:

fetch

Use Playwright browser automation for JavaScript-heavy sites. Best for: Single-page applications, sites requiring JavaScript execution Parameters:
string
required
The URL to fetch
string
default:"markdown"
Output format: markdown, html, or text
boolean
default:"true"
Run browser in headless mode
boolean
default:"false"
Block images, fonts, media for speed boost
boolean
default:"false"
Wait for no network activity for 500ms
number
default:"30000"
Timeout in milliseconds
number
default:"0"
Additional wait time in milliseconds
string
CSS selector to wait for before proceeding
string
default:"attached"
State to wait for: attached, detached, visible, hidden
boolean
default:"false"
Use real Chrome installation instead of Chromium
Set referer as Google search of domain
Example usage:

bulk_fetch

Fetch multiple URLs with browser automation concurrently. Best for: Scraping multiple JavaScript-heavy pages Parameters: Same as fetch, but accepts urls (array) instead of url (string). Example usage:

stealthy_fetch

Advanced stealth browser automation with Cloudflare bypass. Best for: High protection sites, Cloudflare-protected pages Parameters: All fetch parameters, plus:
boolean
default:"false"
Automatically solve Cloudflare challenges
boolean
default:"false"
Block WebRTC to prevent IP leaks
boolean
default:"true"
Allow WebGL (recommended for stealth)
boolean
default:"false"
Add noise to canvas fingerprinting
object
Additional Playwright context settings
Example usage:

bulk_stealthy_fetch

Fetch multiple protected URLs with advanced stealth. Best for: Scraping multiple Cloudflare-protected sites Parameters: Same as stealthy_fetch, but accepts urls (array) instead of url (string). Example usage:

Response Format

All tools return a structured response:
For bulk operations, an array of responses is returned:

Extraction Types

Converts HTML to clean Markdown format:
Best for: Readable text, content processing, AI consumption

CSS Selectors

All tools support CSS selectors for targeted extraction:
When css_selector matches multiple elements, all matches are returned in the content array.

Authentication

HTTP Basic Auth

Proxy Authentication

Common Patterns

Tool Selection Guide

1

Simple HTTP sites

Use get or bulk_get for basic HTML pages without JavaScript
2

JavaScript-heavy sites

Use fetch or bulk_fetch for SPAs and dynamic content
3

Protected sites

Use stealthy_fetch or bulk_stealthy_fetch for Cloudflare and WAF-protected sites
4

Multiple URLs

Use bulk variants (bulk_get, bulk_fetch, bulk_stealthy_fetch) for concurrent operations

MCP Server

Learn about the MCP server

Setup Guide

Configure MCP server for AI clients