MCP Catalogs
Home

one-mcp vs everything

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

one-mcp
by burugo
everything
by modelcontextprotocol
Stars★ 390★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsOps & InfraOther
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last committhis monththis month

one-mcp · Summary

One MCP is a centralized proxy platform for managing multiple MCP services with a web interface, analytics, and service grouping capabilities.

everything · Summary

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

one-mcp · Use cases

  • Managing multiple MCP services in a centralized dashboard instead of configuring each one individually
  • Creating custom Claude Skills by grouping multiple MCP services into a single endpoint
  • Monitoring usage analytics and performance metrics of MCP services across an organization

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

one-mcp · Install

Homebrew Installation (macOS & Linux)

# Add tap
brew tap burugo/tap

# Install one-mcp
brew install one-mcp

# Start as background service
brew services start one-mcp

Docker Installation

docker run --name one-mcp -d \
  --restart always \
  -p 3000:3000 \
  -v $(pwd)/data:/data \
  buru2020/one-mcp:latest

Manual Installation

git clone https://github.com/burugo/one-mcp.git
cd one-mcp
cp .env_example .env
bash ./run.sh

**Default Login**: Username root, Password 123456

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
Comparison generated from public README + GitHub signals. Last updated automatically.