everything vs Uni-CLI
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | Uni-CLI by olo-dot-io | |
|---|---|---|
| Stars | ★ 85,748 | ★ 82 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Uni-CLI · Summary
Universal CLI substrate providing 235+ websites, desktop apps, and MCP servers as searchable commands for AI agents.
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
Uni-CLI · Use cases
- Search and execute commands across 235+ websites, desktop apps, and external CLIs
- Serve MCP tools to AI agents via `npx @zenalexa/unicli mcp serve`
- Repair broken adapters using structured error information and the repair command
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-everythingUni-CLI · Install
# Install globally
npm install -g @zenalexa/unicli
# Serve MCP tools
npx @zenalexa/unicli mcp serve
# Or with transport options
npx @zenalexa/unicli mcp serve --transport streamable --port 19826
# For Claude Desktop
# Add to claude_desktop_config.json:
{
"mcpServers": {
"unicli": {
"command": "npx",
"args": ["@zenalexa/unicli", "mcp", "serve"]
}
}
}