JUHE API Marketplace
pim97 avatar
MCP Server

Scrappey MCP Server

A server that bridges AI models with Scrappey's web automation platform, allowing creation of browser sessions, execution of HTTP requests, and automation of browser actions while handling anti-bot protections.

0
GitHub Stars
3/10/2026
Last Updated
MCP Server Configuration
1{
2 "name": "scrappey",
3 "command": "node",
4 "args": [
5 "path/to/dist/scrappey-mcp.js"
6 ],
7 "env": {
8 "SCRAPPEY_API_KEY": "your_api_key_here"
9 }
10}
JSON10 lines
  1. Home
  2. MCP Servers
  3. mcp-server-scrappey

README Documentation

Scrappey MCP Server

A Model Context Protocol (MCP) server for interacting with Scrappey.com's web automation and scraping capabilities. Try it out directly at smithery.ai/server/@pim97/mcp-server-scrappey.

Overview

This MCP server provides a bridge between AI models and Scrappey's web automation platform, allowing you to:

  • Create and manage browser sessions
  • Send HTTP requests through Scrappey's infrastructure
  • Execute browser actions (clicking, typing, scrolling, etc.)
  • Handle various anti-bot protections automatically (Cloudflare, Datadome, Kasada, etc.)
  • Solve captchas automatically (Turnstile, reCAPTCHA, hCaptcha, etc.)
  • Take screenshots and record videos
  • Intercept network requests

Setup

Installation

npm install
npm run build

Configuration

  1. Get your Scrappey API key from Scrappey.com
  2. Set up your environment variable:
SCRAPPEY_API_KEY=your_api_key_here

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "scrappey": {
      "command": "node",
      "args": ["path/to/dist/scrappey-mcp.js"],
      "env": {
        "SCRAPPEY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

1. Create Session (scrappey_create_session)

Creates a new browser session that persists cookies and other state.

{
  "proxy": "http://user:pass@ip:port",
  "proxyCountry": "UnitedStates",
  "premiumProxy": true,
  "mobileProxy": false,
  "browser": [{"name": "firefox", "minVersion": 120, "maxVersion": 130}],
  "userAgent": "custom-user-agent"
}

2. Destroy Session (scrappey_destroy_session)

Properly closes a browser session to free resources.

{
  "session": "session_id_here"
}

3. List Sessions (scrappey_list_sessions)

List all active sessions for the current user.

{}

Response:

{
  "sessions": [{"session": "abc123", "lastAccessed": 1234567890}],
  "open": 1,
  "limit": 100
}

4. Check Session Active (scrappey_session_active)

Check if a specific session is currently active.

{
  "session": "session_id_here"
}

5. Send Request (scrappey_request)

Send HTTP requests with antibot bypass capabilities.

{
  "cmd": "request.get",
  "url": "https://example.com",
  "session": "session_id_here",
  "postData": {"key": "value"},
  "customHeaders": {"User-Agent": "custom-agent"},
  "cookies": "session=abc123",
  "proxyCountry": "Germany",
  "premiumProxy": true,
  "cloudflareBypass": true,
  "datadomeBypass": true,
  "automaticallySolveCaptchas": true,
  "alwaysLoad": ["recaptcha", "hcaptcha"],
  "screenshot": true,
  "cssSelector": ".product-title",
  "innerText": true,
  "includeLinks": true,
  "includeImages": true,
  "interceptFetchRequest": "https://api.example.com/data",
  "abortOnDetection": ["analytics.com", "tracking.js"],
  "whitelistedDomains": ["example.com"],
  "blockCookieBanners": true
}

6. Browser Actions (scrappey_browser_action)

Execute browser automation actions.

{
  "session": "session_id_here",
  "url": "https://example.com",
  "cmd": "request.get",
  "browserActions": [
    {"type": "wait_for_selector", "cssSelector": "#login-form"},
    {"type": "type", "cssSelector": "#username", "text": "myuser"},
    {"type": "type", "cssSelector": "#password", "text": "mypassword"},
    {"type": "solve_captcha", "captcha": "turnstile"},
    {"type": "click", "cssSelector": "#submit", "waitForSelector": ".dashboard"},
    {"type": "execute_js", "code": "document.querySelector('.user-data').innerText"}
  ],
  "mouseMovements": true
}
Supported Browser Action Types:
ActionDescription
clickClick on an element
typeType text into an input field
gotoNavigate to a URL
waitWait for specified milliseconds
wait_for_selectorWait for an element to appear
wait_for_functionWait for JavaScript condition to be true
wait_for_load_stateWait for page load state (domcontentloaded, networkidle, load)
wait_for_cookieWait for a cookie to be set
execute_jsExecute JavaScript code
scrollScroll to element or page bottom
hoverHover over an element
keyboardPress keyboard keys (enter, tab, etc.)
dropdownSelect option from dropdown
switch_iframeSwitch to an iframe
set_viewportChange browser viewport size
ifConditional action execution
whileLoop actions while condition is true
solve_captchaSolve various captcha types
remove_iframesRemove all iframes from page
Supported Captcha Types:
  • turnstile - Cloudflare Turnstile
  • recaptcha / recaptchav2 / recaptchav3 - Google reCAPTCHA
  • hcaptcha / hcaptcha_inside / hcaptcha_enterprise_inside - hCaptcha
  • funcaptcha - FunCaptcha/Arkose Labs
  • perimeterx - PerimeterX
  • mtcaptcha - MTCaptcha
  • custom - Custom image captcha

7. Screenshot (scrappey_screenshot)

Take a screenshot of a webpage.

{
  "url": "https://example.com",
  "session": "optional_session_id",
  "screenshotWidth": 1920,
  "screenshotHeight": 1080,
  "fullPage": true,
  "browserActions": [
    {"type": "wait", "wait": 2000}
  ],
  "premiumProxy": true
}

Antibot Bypass

The server automatically handles various protection systems:

  • Cloudflare - Bot Management, Turnstile, Challenge pages
  • Datadome - Advanced bot detection
  • PerimeterX - Behavioral analysis
  • Kasada - Fingerprinting and challenges
  • Akamai - Bot Manager
  • Incapsula - Imperva security

Enable specific bypasses:

{
  "cloudflareBypass": true,
  "datadomeBypass": true,
  "kasadaBypass": true
}

Proxy Options

{
  "proxy": "http://user:pass@ip:port",
  "proxyCountry": "UnitedStates",
  "premiumProxy": true,
  "mobileProxy": true,
  "noProxy": false
}

Supported Countries: UnitedStates, UnitedKingdom, Germany, France, and many more.

Error Codes

The server provides detailed error information:

CodeDescription
CODE-0001Server capacity full, try again
CODE-0002Cloudflare blocked
CODE-0007Turnstile/Proxy error
CODE-0010Datadome proxy blocked
CODE-0024Proxy timeout
CODE-0029Too many sessions open
CODE-0032Turnstile captcha failed

Typical Workflow

  1. Create a session:
{"name": "scrappey_create_session"}
  1. Navigate and interact:
{
  "name": "scrappey_browser_action",
  "session": "returned_session_id",
  "url": "https://example.com/login",
  "cmd": "request.get",
  "browserActions": [
    {"type": "type", "cssSelector": "#username", "text": "myuser"},
    {"type": "type", "cssSelector": "#password", "text": "mypass"},
    {"type": "click", "cssSelector": "#login-btn", "waitForSelector": ".dashboard"}
  ]
}
  1. Extract data:
{
  "name": "scrappey_request",
  "cmd": "request.get",
  "url": "https://example.com/data",
  "session": "returned_session_id",
  "cssSelector": ".product-list"
}
  1. Clean up:
{
  "name": "scrappey_destroy_session",
  "session": "returned_session_id"
}

Best Practices

  1. Reuse sessions for related requests to maintain state
  2. Destroy sessions when done to free resources
  3. Use premium proxies for better success rates on protected sites
  4. Enable automatic captcha solving for sites with challenges
  5. Use appropriate wait times between actions for human-like behavior
  6. Monitor session limits to avoid hitting limits

Deployment

Smithery Deployment

# Build
npm run build

# Deploy via Smithery CLI
npx @anthropic/smithery-cli deploy

Docker

docker build -t scrappey-mcp .
docker run -e SCRAPPEY_API_KEY=your_key scrappey-mcp

Resources

  • Try on Smithery
  • Scrappey Documentation
  • Get Scrappey API Key

License

MIT License

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.aiFeatured on ShowMeBestAI
Copyright © 2026 JUHEDATA HK LIMITED - All rights reserved