Scrapling vs google-search
Side-by-side comparison to help you pick between these two MCP servers.
Scrapling by D4Vinci | google-search by web-agent-master | |
|---|---|---|
| Stars | ★ 50,346 | ★ 595 |
| 30d uses | — | — |
| Score | 62 | 45 |
| Official | — | — |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | SearchWeb ScrapingBrowser Automation |
| Language | Python | TypeScript |
| Last commit | this month | 14 mo ago |
Scrapling · Summary
Web scraping framework with adaptive parsing and anti-bot capabilities, now integrated as an MCP server.
google-search · Summary
Playwright-based Google search tool with MCP server integration that bypasses anti-bot detection.
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
google-search · Use cases
- Enabling AI assistants to perform real-time Google searches without API keys
- Providing a local alternative to paid SERP APIs for developers and researchers
- Facilitating web scraping and data extraction from Google search results
- Supporting AI applications that need current web information and real-time search capabilities
Scrapling · Install
Installing Scrapling MCP Server
- Install the Scrapling package via pip:
``bash pip install scrapling ``
- 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"] } } } ``
google-search · Install
# Install from source
git clone https://github.com/web-agent-master/google-search.git
cd google-search
# Install dependencies
npm install
# Compile TypeScript code
npm run build
# Link package globally (required for MCP functionality)
npm linkFor Claude Desktop integration:
{
"mcpServers": {
"google-search": {
"command": "npx",
"args": ["google-search-mcp"]
}
}
}