everything vs Claude-Code-MCP-Manager
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | Claude-Code-MCP-Manager by qdhenry | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityOther |
| Language | TypeScript | Shell |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Claude-Code-MCP-Manager · Summary
A bash script tool for managing MCP configurations for Claude Code with add, remove, and auto-loading capabilities.
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
Claude-Code-MCP-Manager · Use cases
- Managing multiple MCP servers for Claude Code projects
- Automating MCP configuration setup for development teams
- Creating portable MCP configurations across different environments
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-everythingClaude-Code-MCP-Manager · Install
Installation
- Download the script:
curl -O https://raw.githubusercontent.com/qdhenry/Claude-Code-MCP-Manager/main/mcp-manager.sh- Make it executable:
chmod +x mcp-manager.sh- Move to a location in your PATH (optional):
sudo mv mcp-manager.sh /usr/local/bin/mcp-managerFor Claude Desktop configuration, ensure the MCP servers are properly configured in your claude_desktop_config.json:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": ["supabase/mcp-server-supabase@latest", "--access-token", "YOUR_TOKEN_HERE"]
},
"digitalocean": {
"command": "npx",
"args": ["-y", "@digitalocean/mcp"]
}
}
}