Server data from the Official MCP Registry
Fetch any web page's HTML or AI-parsed JSON through the ScrapeUnblocker anti-bot API.
Fetch any web page's HTML or AI-parsed JSON through the ScrapeUnblocker anti-bot API.
This is a well-structured MCP server with proper authentication, safe credential handling, and appropriate input validation. The server requires users to provide their own ScrapeUnblocker API key via environment variables, eliminating credential storage concerns. Minor code quality improvements around error handling and logging could be made, but the implementation is fundamentally sound and permissions align well with the declared purpose of web scraping. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
4 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: SCRAPEUNBLOCKER_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"com-scrapeunblocker-scrapeunblocker-mcp": {
"env": {
"SCRAPEUNBLOCKER_KEY": "your-scrapeunblocker-key-here"
},
"args": [
"-y",
"scrapeunblocker-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol server that lets Claude (and any other MCP client) fetch any web page's HTML through the ScrapeUnblocker scraping API, bypassing anti-bot protection (Cloudflare, DataDome, PerimeterX, Akamai, Shape).
You bring your own API key. Nothing is shared or proxied through us.
| Tool | What it does |
|---|---|
fetch_html | Fetch the fully rendered HTML of a URL. |
fetch_parsed | Fetch a page and return AI-parsed structured JSON. |
google_search | Run a Google search and return organic results as JSON. |
Sign up and grab your key at https://app.scrapeunblocker.com. The server
reads it from the SCRAPEUNBLOCKER_KEY environment variable.
claude mcp add scrapeunblocker \
--env SCRAPEUNBLOCKER_KEY=your_api_key_here \
-- npx -y scrapeunblocker-mcp
Add this to your claude_desktop_config.json
(Settings → Developer → Edit Config):
{
"mcpServers": {
"scrapeunblocker": {
"command": "npx",
"args": ["-y", "scrapeunblocker-mcp"],
"env": {
"SCRAPEUNBLOCKER_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop and the ScrapeUnblocker tools appear.
Run the server over stdio:
SCRAPEUNBLOCKER_KEY=your_api_key_here npx -y scrapeunblocker-mcp
npm install
npm run build # bundles to dist/ with tsup
npm run typecheck
SCRAPEUNBLOCKER_KEY=... node dist/index.js # run the server
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.