webclaw vs everything
Side-by-side comparison to help you pick between these two MCP servers.
webclaw by kuroko1t | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
webclaw · Summary
WebClaw is a Chrome extension-based MCP server that allows AI assistants to control real Chrome browser sessions through a WebSocket connection.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
webclaw · Use cases
- Automating web testing and QA workflows using AI assistants
- Cross-platform web scraping with existing authenticated sessions
- AI-powered UI automation and task completion in web applications
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
1. Configure your MCP client
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}Other clients
# Claude Code
claude mcp add webclaw -- npx -y webclaw-mcp
# Cursor / VS Code / Windsurf
# Add to respective MCP config files:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}2. Load Chrome Extension
- Download the latest [webclaw-extension.zip](https://github.com/kuroko1t/webclaw/releases/latest)
- Open
chrome://extensions/→ enable **Developer mode** - Click **Load unpacked** → select the
dist/folder
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