freshcrate
Home > MCP Servers > scrapfly-mcp

scrapfly-mcp

Official Scrapfly MCP server for Cursor, Claude Desktop, and any MCP-compatible client. Enterprise-grade web scraping, AI extraction, and anti-botโ€“aware data access as first-class tools.

Description

Official Scrapfly MCP server for Cursor, Claude Desktop, and any MCP-compatible client. Enterprise-grade web scraping, AI extraction, and anti-botโ€“aware data access as first-class tools.

README

Scrapfly MCP Server

Scrapfly

Give your AI real-time access to any website

๐ŸŒ Landing Page โ€ข ๐Ÿ“– Documentation โ€ข ๐ŸŽฎ Live Demo โ€ข ๐Ÿ”‘ Get API Key


What is Scrapfly MCP?

The Scrapfly MCP Server connects your AI assistants to live web data through the Model Context Protocol. Transform your AI from being limited by training data to having real-time access to any website.

โœจ What Your AI Can Do

Capability Description
๐ŸŒ Scrape Live Data Pull current prices, listings, news, or any webpage content in real-time
๐Ÿ›ก๏ธ Bypass Anti-Bot Systems Automatically handle CAPTCHAs, proxies, JavaScript rendering, and rate limits
โšก Extract Structured Data Parse complex websites into clean JSON using AI-powered extraction
๐Ÿ“ธ Capture Screenshots Take visual snapshots of pages or specific elements for analysis

๐Ÿ† Why Scrapfly?

Built on battle-tested infrastructure used by thousands of developers:

๐Ÿ“– Learn more: Why Scrapfly MCP?


๐Ÿš€ Quick Install

Click one of the buttons below to install the MCP server in your preferred IDE:

Install in VS CodeInstall in VS Code InsidersInstall in Visual StudioInstall in Cursor

๐Ÿ“ฆ Manual Installation

Standard Configuration

Works with most MCP-compatible tools:

{
  "servers": {
    "scrapfly-cloud-mcp": {
      "type": "http",
      "url": "https://mcp.scrapfly.io/mcp"
    }
  }
}

Cloud Configuration (NPX)

For tools that require a local process:

{
  "mcpServers": {
    "scrapfly": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.scrapfly.io/mcp"
      ]
    }
  }
}

๐Ÿ”ง IDE-Specific Setup

VS Code

One-Click Install

Install in VS Code

Manual Install

Follow the VS Code MCP guide or use the CLI:

code --add-mcp '{"name":"scrapfly-cloud-mcp","type":"http","url":"https://mcp.scrapfly.io/mcp"}'

After installation, Scrapfly tools will be available in GitHub Copilot Chat.

๐Ÿ“– Full guide: VS Code Integration

VS Code Insiders

One-Click Install

Install in VS Code Insiders

Manual Install

code-insiders --add-mcp '{"name":"scrapfly-cloud-mcp","type":"http","url":"https://mcp.scrapfly.io/mcp"}'

๐Ÿ“– Full guide: VS Code Integration

Visual Studio

One-Click Install

Install in Visual Studio

Manual Install

  1. Open Visual Studio
  2. Navigate to GitHub Copilot Chat window
  3. Click the tools icon (๐Ÿ› ๏ธ) in the chat toolbar
  4. Click + Add Server to open the configuration dialog
  5. Configure:
    • Server ID: scrapfly-cloud-mcp
    • Type: http/sse
    • URL: https://mcp.scrapfly.io/mcp
  6. Click Save

๐Ÿ“– Full guide: Visual Studio MCP documentation

Cursor

One-Click Install

Install in Cursor

Manual Install

  1. Go to Cursor Settings โ†’ MCP โ†’ Add new MCP Server
  2. Use the standard configuration above
  3. Click Edit to verify or add arguments

๐Ÿ“– Full guide: Cursor Integration

Claude Code

Use the Claude Code CLI:

claude mcp add scrapfly-cloud-mcp --url https://mcp.scrapfly.io/mcp

๐Ÿ“– Full guide: Claude Code Integration

Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "scrapfly": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.scrapfly.io/mcp"]
    }
  }
}

๐Ÿ“– Full guide: Claude Desktop Integration

Cline

Add to your Cline MCP settings:

{
  "scrapfly-cloud-mcp": {
    "type": "http",
    "url": "https://mcp.scrapfly.io/mcp"
  }
}

๐Ÿ“– Full guide: Cline Integration

Windsurf

Follow the Windsurf MCP documentation using the standard configuration.

๐Ÿ“– Full guide: Windsurf Integration

Zed

Add to your Zed settings:

{
  "context_servers": {
    "scrapfly-cloud-mcp": {
      "type": "http",
      "url": "https://mcp.scrapfly.io/mcp"
    }
  }
}

๐Ÿ“– Full guide: Zed Integration

OpenAI Codex

Create or edit ~/.codex/config.toml:

[mcp_servers.scrapfly-cloud-mcp]
url = "https://mcp.scrapfly.io/mcp"

๐Ÿ“– More info: Codex MCP documentation

Gemini CLI

Follow the Gemini CLI MCP guide using the standard configuration.

OpenCode

Add to ~/.config/opencode/opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "scrapfly-cloud-mcp": {
      "type": "http",
      "url": "https://mcp.scrapfly.io/mcp",
      "enabled": true
    }
  }
}

๐Ÿ“– More info: OpenCode MCP documentation


๐Ÿ› ๏ธ Available Tools

The Scrapfly MCP Server provides 5 powerful tools covering 99% of web scraping use cases:

Tool Description Use Case
scraping_instruction_enhanced Get best practices & POW token Always call first!
web_get_page Quick page fetch with smart defaults Simple scraping tasks
web_scrape Full control with browser automation Complex scraping, login flows
screenshot Capture page screenshots Visual analysis, monitoring
info_account Check usage & quota Account management

๐Ÿ“– Full reference: Tools & API Specification

Example: Scrape a Page

User: "What are the top posts on Hacker News right now?"

AI: Uses web_get_page to fetch https://news.ycombinator.com and returns current top stories

Example: Extract Structured Data

User: "Get all product prices from this Amazon page"

AI: Uses web_scrape with extraction_model="product_listing" to return structured JSON

๐Ÿ“– More examples: Real-World Examples


๐Ÿ” Authentication

Scrapfly MCP supports multiple authentication methods:

Method Best For Documentation
OAuth2 Production, multi-user apps OAuth2 Setup
API Key Personal use, development API Key Setup
Header Auth Custom integrations Header Auth

๐Ÿ”‘ Get your API key: Scrapfly Dashboard


๐Ÿ“Š Configuration Reference

Setting Value
Server Name scrapfly-cloud-mcp
Type Remote HTTP Server
URL https://mcp.scrapfly.io/mcp
Protocol MCP over HTTP/SSE

๐Ÿ–ฅ๏ธ Self-Hosted / Local Deployment

You can run the Scrapfly MCP server locally or self-host it.

CLI Arguments

Flag Description
-http <address> Start HTTP server at the specified address (e.g., :8080). Takes precedence over PORT env var.
-apikey <key> Use this API key instead of the SCRAPFLY_API_KEY environment variable.

Environment Variables

Variable Description
PORT HTTP port to listen on. Used if -http flag is not set.
SCRAPFLY_API_KEY Default Scrapfly API key. Can also be passed via query parameter ?apiKey=xxx at runtime.

Examples

# Start HTTP server on port 8080
./scrapfly-mcp -http :8080

# Start HTTP server using PORT env var
PORT=8080 ./scrapfly-mcp

# Start with API key
./scrapfly-mcp -http :8080 -apikey scp-live-xxxx

# Start in stdio mode (for local MCP clients)
./scrapfly-mcp

Docker

# Build
docker build -t scrapfly-mcp .

# Run (Smithery compatible - uses PORT env var)
docker run -p 8080:8080 scrapfly-mcp

# Run with custom port
docker run -e PORT=9000 -p 9000:9000 scrapfly-mcp

๐Ÿค Framework Integrations

Scrapfly MCP also works with AI frameworks and automation tools:

Framework Documentation
LangChain LangChain Integration
LlamaIndex LlamaIndex Integration
CrewAI CrewAI Integration
OpenAI OpenAI Integration
n8n n8n Integration
Make Make Integration
Zapier Zapier Integration

๐Ÿ“– All integrations: Integration Index


๐Ÿ“š Resources


๐Ÿ’ฌ Need Help?


Scrapfly
Made with โค๏ธ by Scrapfly
The Web Scraping API for Developers

Release History

VersionChangesUrgencyDate
v1.2.2Latest release: v1.2.2High4/20/2026
v1.2.1Tag v1.2.1High4/18/2026
v1.2.0Tag v1.2.0High4/16/2026
v1.1.0Tag v1.1.0High4/15/2026
v1.0.9Tag v1.0.9Low12/16/2025
v1.0.8Tag v1.0.8Low12/12/2025
v1.0.7Tag v1.0.7Low12/12/2025
v1.0.6Tag v1.0.6Low12/12/2025
v1.0.5Tag v1.0.5Low12/12/2025
v1.0.4Tag v1.0.4Low12/12/2025
v1.0.3Tag v1.0.3Low12/12/2025
v1.0.1Tag v1.0.1Low12/11/2025
v1.0.0Tag v1.0.0Low12/10/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

GhostDeskGive any AI agent a full desktop โ€” it sees the screen, clicks, types, and runs apps like a human. Automate anything with a UI: browsers, legacy software, internal tools. No API needed. One Docker commv7.1.0
woveOpen-source AI coding agent. Desktop app, bring your own model. Writes code, browses the web, verifies its work. Apache 2.0.v0.2.0
camofox-browserAnti-detection browser server for AI agents โ€” REST API wrapping Camoufox engine with OpenClaw plugin supportv2.1.1
claw-pilotMulti-agent orchestration runtime with task board, flow engine, budget control, MCP integration and real-time dashboard. Self-hosted on Linux/macOS.v0.81.1
viyv-browser-mcpMCP Server for AI agent browser automation via Chrome Extension0.11.0