MCPJungle vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCPJungle by mcpjungle | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,041 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this month |
MCPJungle · Summary
A self-hosted MCP gateway that centralizes multiple MCP servers behind one endpoint.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCPJungle · Use cases
- Personal development setup with centralized MCP tools access
- Team infrastructure sharing MCP servers with access controls
- Simplifying AI client configuration by replacing multiple endpoints with one
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
MCPJungle · Install
Quick Start
Using Docker (Recommended)
curl -O https://raw.githubusercontent.com/mcpjungle/MCPJungle/refs/heads/main/docker-compose.yaml
docker compose up -dUsing Homebrew
brew install mcpjungle/mcpjungle/mcpjungleClaude Desktop Configuration
Add this to your Claude Desktop config:
{
"mcpServers": {
"mcpjungle": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8080/mcp",
"--allow-http"
]
}
}
}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