Firecrawl-Compatible Stealth Web Scraper MCP Server
Enables pay-per-use settlement via Coinbase x402 micropayments (USDC on Base), allowing agents to pay for successful scrapes without an API key.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Firecrawl-Compatible Stealth Web Scraper MCP ServerScrape https://example.com/article and return the markdown"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Firecrawl-Compatible Stealth Web Scraper MCP Server
⚡ Run directly on Apify Store: Firecrawl Alternative: WAF-Bypass Web Scraper
A lightweight, drop-in replacement for the core Firecrawl MCP tools (firecrawl_scrape, firecrawl_crawl, and firecrawl_map). Built for AI agents (Cursor, Claude Desktop, autonomous swarms) that need clean, LLM-ready markdown without paying for blocked requests or running into aggressive edge bot filters.
What This Solves
Strict Pay-Per-Success Billing: Standard scraping APIs consume your credits even when a site returns HTTP 403 or times out. This server only charges when valid DOM content is extracted. If a request is blocked or unreachable, you pay $0.00.
Resilient TLS Fingerprinting: Direct HTTP clients (curl, python-requests, default node fetch) get blocked by modern edge firewalls before reaching the page. This engine emulates realistic browser TLS Client Hello signatures (JA3/JA4) and HTTP/2 frame ordering.
Passive URL Mapping (Zero Target Probing):
firecrawl_mapqueries passive threat intelligence indexes (AlienVault OTX) to discover indexed URLs and endpoints under a target domain without sending active HTTP probes to the target server.Dual Settlement Rails: Connect either via Apify Pay-Per-Event ($0.005/scrape) or natively via Coinbase x402 micropayments ($0.01 USDC on Base).
Related MCP server: Firecrawl MCP Server
Supported Tools
1. firecrawl_scrape
Scrapes a single webpage and returns clean, LLM-ready Markdown.
Parameters:
url(string, required): The target webpage URL.formats(array, optional):["markdown", "html"](default:["markdown"]).onlyMainContent(boolean, optional): Strips navigation bars, footers, scripts, and cookie banners (default:true).waitFor(integer, optional): Milliseconds to wait for client-side JavaScript rendering (default:0).
Response Shape:
{
"success": true,
"data": {
"markdown": "# Page Title\n\nArticle content...",
"metadata": {
"title": "Page Title",
"description": "Page meta description",
"language": "en",
"sourceURL": "https://example.com/article",
"statusCode": 200,
"wordCount": 420
}
}
}2. firecrawl_map
Discovers URLs belonging to a domain using passive intelligence without active probing.
Parameters:
url(string, required): Domain or URL to map (e.g.example.com).limit(integer, optional): Maximum URLs to return (default:100).
Response Shape:
{
"success": true,
"links": [
"https://example.com/pricing",
"https://example.com/docs",
"https://example.com/blog/post-1"
]
}3. firecrawl_crawl
Crawls linked pages on a website up to a designated depth.
Parameters:
url(string, required): Starting URL.maxDepth(integer, optional): Maximum link depth (default:2).limit(integer, optional): Maximum pages to scrape (default:10).
Installation & Setup
Claude Desktop
Option A: Native UI (Recommended)
Open Claude Desktop → Settings → Connectors
Click Add custom connector
Paste:
https://neon-innovation-lab--firecrawl-stealth-mcp.apify.actor/mcp
Option B: Config File (claude_desktop_config.json)
Claude Desktop's config file runs local commands, so remote HTTPS servers connect via the official mcp-remote stdio bridge:
{
"mcpServers": {
"firecrawl-stealth": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://neon-innovation-lab--firecrawl-stealth-mcp.apify.actor/mcp"]
}
}
}Cursor IDE
Add to your .cursor/mcp.json:
{
"mcpServers": {
"firecrawl-stealth": {
"type": "streamable-http",
"url": "https://neon-innovation-lab--firecrawl-stealth-mcp.apify.actor/mcp"
}
}
}Autonomous Agent Integration (x402 Micropayments)
Autonomous agents calling this MCP server can pay dynamically using the x402 protocol:
Make unauthenticated tool call to
/mcp.Receive HTTP 402 challenge with payment parameters (
0.01 USDCon Baseeip155:8453).Retry request with signed payload in
_meta["x402/payment"].Settlement occurs only if extraction succeeds.
Local Development & Docker
# Clone and install dependencies
npm install
# Build TypeScript
npm run build
# Start server locally on port 8080
npm startRun via Docker:
docker build -t firecrawl-stealth-mcp .
docker run -p 8080:8080 firecrawl-stealth-mcpThis server cannot be deployed
Maintenance
Related MCP Connectors
Cloud scraping & crawling API for AI agents. Turn any URL into clean, LLM-ready markdown.
Web search, browser automation, scraping, crawling and CAPTCHA solving for AI agents.
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Crawl, scrape, search the web, and automate browsers at scale with anti-bot bypass.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to perform undetectable browser automation that bypasses Cloudflare, antibots, and social media blocks. Provides 105 tools for element extraction, network debugging, and real-world web scraping with a 98.7% success rate on protected sites.2,060MIT
- AlicenseAqualityDmaintenanceIntegrates Firecrawl for web scraping, crawling, search, and content extraction capabilities. Supports single/batch scraping, URL discovery, structured data extraction, deep research, and AI-powered web analysis with automatic retries and rate limiting.827,437 npmMIT
- AlicenseAqualityDmaintenanceIntegrates Firecrawl web scraping capabilities, enabling web content extraction, crawling, site mapping, search, and structured data extraction with automatic rate limiting and retry handling.627,437 npm2MIT
- AlicenseAqualityDmaintenanceEnables web scraping, crawling, and content extraction by integrating with the Firecrawl API. It supports deep research, batch scraping, and automatic rate limiting for both cloud and self-hosted environments.827,437 npm1MIT