MCP Catalogs
Home

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
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis 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-everything

clawmaster · Install

Installation

CLI + Web Console (recommended)

npm i -g clawmaster
clawmaster                   # start the web console

Open 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 environment

Desktop 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 app

Requires Node.js 20+.

Comparison generated from public README + GitHub signals. Last updated automatically.