Scrapling vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Scrapling by D4Vinci | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 50,346 | ★ 85,748 |
| 30d uses | — | — |
| Score | 62 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
Scrapling · Summary
Web scraping framework with adaptive parsing and anti-bot capabilities, now integrated as an MCP server.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"] } } } ``
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything