openclaw-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
openclaw-mcp by freema | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 169 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
openclaw-mcp · Summary
MCP server bridging Claude.ai with self-hosted OpenClaw assistant using OAuth2 authentication.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openclaw-mcp · Use cases
- Delegating tasks from Claude to self-hosted OpenClaw assistants
- Creating AI assistants that orchestrate other AI assistants
- Managing multiple OpenClaw instances for different environments (prod/staging/dev)
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
openclaw-mcp · Install
Installation
Docker (Recommended)
docker pull ghcr.io/freema/openclaw-mcp:latestCreate a docker-compose.yml with environment variables and start:
export MCP_CLIENT_SECRET=$(openssl rand -hex 32)
export OPENCLAW_GATEWAY_TOKEN=your-gateway-token
docker compose up -dClaude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"openclaw": {
"command": "npx",
"args": ["openclaw-mcp"],
"env": {
"OPENCLAW_URL": "http://127.0.0.1:18789",
"OPENCLAW_GATEWAY_TOKEN": "your-gateway-token",
"OPENCLAW_MODEL": "openclaw"
}
}
}
}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