everything vs mcp-client-manager-go
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-client-manager-go by VikashLoomba | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-client-manager-go · Summary
A Go library that manages multiple MCP servers and provides a unified HTTP gateway for connecting to them.
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
mcp-client-manager-go · Use cases
- Build applications that need to interact with multiple MCP servers simultaneously
- Create a unified API gateway for MCP services in Go
- Manage MCP server connections with automatic reconnection and monitoring
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-everythingmcp-client-manager-go · Install
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcpmgr
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcp-gatewayFor Claude Desktop integration, add this to your Claude Desktop config:
{
"mcpServers": {
"mcp-manager": {
"command": "go",
"args": ["run", "github.com/vikashloomba/mcp-client-manager-go/cmd/gateway-example"]
}
}
}