MCP Catalogs
Home

everything vs obot

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
obot
by obot-platform
Stars★ 85,748★ 777
30d uses
Score7753
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsOps & InfraAI / LLM Tools
LanguageTypeScriptGo
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

obot · Summary

Complete MCP platform offering hosting, registry, gateway, and chat client.

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

obot · Use cases

  • Enterprise deployment and management of MCP servers with authentication and access controls
  • Creating an internal MCP server registry for approved tools within an organization
  • Building secure chat applications that leverage multiple MCP servers

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

obot · Install

Obot Installation

Docker Installation

docker run -d --name obot -p 8080:8080 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -e OPENAI_API_KEY=<API KEY> \
  -e OBOT_SERVER_ENABLE_AUTHENTICATION=true \
  -e OBOT_BOOTSTRAP_TOKEN=<token> \
  ghcr.io/obot-platform/obot:latest

After starting, open http://localhost:8080 in your browser to access the Obot UI. Check the container logs to see your bootstrap token for initial setup.

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