MCP Catalogs
Home

Scrapling vs one-search-mcp

Side-by-side comparison to help you pick between these two MCP servers.

Scrapling
by D4Vinci
one-search-mcp
by yokingma
Stars★ 50,346★ 114
30d uses
Score6247
Official
Categories
Web ScrapingAI / LLM ToolsDeveloper Tools
Web ScrapingSearchBrowser Automation
LanguagePythonTypeScript
Last committhis month1 mo ago

Scrapling · Summary

Web scraping framework with adaptive parsing and anti-bot capabilities, now integrated as an MCP server.

one-search-mcp · Summary

OneSearch MCP Server provides web search, scraping, and content extraction with multiple search providers and local browser automation.

Scrapling · Use cases

  • Extracting structured data from dynamic websites with changing layouts
  • Large-scale web crawling with automatic proxy rotation and anti-bot bypass
  • Integrating web scraping capabilities into AI agent workflows

one-search-mcp · Use cases

  • Conduct web searches with multiple search providers through MCP
  • Scrape and extract content from websites for analysis
  • Perform local browser searches without API keys or costs
  • Preprocess web content for downstream AI model consumption

Scrapling · Install

Installing Scrapling MCP Server

  1. Install the Scrapling package via pip:

``bash pip install scrapling ``

  1. Configure your MCP client to use the Scrapling server. For Claude Desktop, add to claude_desktop_config.json:

``json { "mcpServers": { "scrapling": { "command": "python", "args": ["-m", "scrapling", "mcp"] } } } ``

one-search-mcp · Install

Installation

Using 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": {
    "one-search-mcp": {
      "command": "npx",
      "args": ["-y", "one-search-mcp"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}

Manual Installation

# Install globally (Optional)
npm install -g one-search-mcp

# Or run directly with npx
npx -y one-search-mcp

Using Docker

# Pull the image
docker pull ghcr.io/yokingma/one-search-mcp:latest

Configure with Docker in your Claude Desktop config:

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/yokingma/one-search-mcp:latest"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.