webclaw vs everything
Side-by-side comparison to help you pick between these two MCP servers.
webclaw by 0xMassi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,155 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
webclaw · Summary
A Rust-based fast local-first web content extraction tool with MCP server for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
webclaw · Use cases
- AI agent web access for clean page context
- RAG ingestion from documentation sites
- Competitor monitoring and content analysis
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
webclaw · Install
Installation Options
**Agent Setup (Recommended)**
npx create-webclaw**Homebrew**
brew tap 0xMassi/webclaw
brew install webclaw**Cargo**
cargo install --git https://github.com/0xMassi/webclaw.git webclaw-mcp
cargo install --git https://github.com/0xMassi/webclaw.git webclaw-cli**Claude Desktop Configuration**
{
"mcpServers": {
"webclaw": {
"command": "~/.webclaw/webclaw-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