MCP Catalogs
Home

mcp-gateway vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-gateway
by hyprmcp
everything
by modelcontextprotocol
Stars★ 92★ 85,748
30d uses
Score4777
Official
Categories
SecurityDeveloper ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit1 mo agothis month

mcp-gateway · Summary

An enterprise-grade MCP gateway with OAuth authentication, prompt analytics, and firewall capabilities.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-gateway · Use cases

  • Securing MCP servers in enterprise environments with OAuth authentication
  • Implementing single sign-on (SSO) for MCP tool access
  • Monitoring and analyzing MCP prompt usage across an organization
  • Building enterprise-grade MCP infrastructure with authentication and analytics

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-gateway · Install

Installation

The Hypr MCP Gateway can be installed as a standalone service:

  1. Clone the repository: git clone https://github.com/hyprmcp/mcp-gateway.git
  2. Build the binary: cd mcp-gateway && go build
  3. Run the gateway: ./mcp-gateway

Claude Desktop Configuration

Add to your Claude Desktop configuration:

"mcpServers": {
  "hypr-gateway": {
    "command": "go",
    "args": ["run", "/path/to/mcp-gateway"]
  }
}

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.