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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this 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-mcpDocker Installation
docker run --name one-mcp -d \
--restart always \
-p 3000:3000 \
-v $(pwd)/data:/data \
buru2020/one-mcp:latestManual 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