everything vs clawmaster
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | clawmaster by openmaster-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
clawmaster · Summary
A comprehensive MCP server platform for managing OpenClaw with web console, desktop app, and MCP server integration.
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
clawmaster · Use cases
- Managing OpenClaw configurations for teams or families through a centralized web interface
- Setting up memory-backed digital assistants with PowerMem integration
- Monitoring and observability of OpenClaw runtime performance and costs
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-everythingclawmaster · Install
Installation
CLI + Web Console (recommended)
npm i -g clawmaster
clawmaster # start the web consoleOpen http://localhost:16223 — the setup wizard walks you through OpenClaw engine detection and LLM provider configuration.
clawmaster serve --daemon # run in background
clawmaster stop # stop the service
clawmaster doctor # verify your environmentDesktop App (Beta)
Download the installer for your platform from [GitHub Releases](https://github.com/openmaster-ai/clawmaster/releases)
From Source
git clone https://github.com/openmaster-ai/clawmaster.git
cd clawmaster
npm install
npm run dev:web # web console + backend
npm run tauri:dev # desktop appRequires Node.js 20+.