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 | — | — |
| Score | 62 | 47 |
| Official | — | — |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | Web ScrapingSearchBrowser Automation |
| Language | Python | TypeScript |
| Last commit | this month | 1 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
- 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"] } } } ``
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-mcpUsing Docker
# Pull the image
docker pull ghcr.io/yokingma/one-search-mcp:latestConfigure 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"
}
}
}
}