MCP Catalogs
Home

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
Score5477
Official
Categories
Developer ToolsOps & InfraProductivity
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last committhis monththis 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 -d

Using Homebrew

brew install mcpjungle/mcpjungle/mcpjungle

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.