MCP Catalogs
Home

aai-gateway vs everything

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

aai-gateway
by gybob
everything
by modelcontextprotocol
Stars★ 104★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

aai-gateway · Summary

AAI Gateway provides unified management of MCP servers and skills across multiple AI agents with 99% context token savings.

everything · Summary

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

aai-gateway · Use cases

  • Browser automation by searching for and installing Playwright MCP
  • PPT creation by importing PPT skill packages
  • Code development assistance through unified management of coding tools

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

aai-gateway · Install

Installation

**Claude Code:**

claude mcp add --scope user --transport stdio aai-gateway -- npx -y aai-gateway

**Codex:**

codex mcp add aai-gateway -- npx -y aai-gateway

**OpenCode** — add to ~/.config/opencode/opencode.json:

{
  "mcp": {
    "aai-gateway": {
      "type": "local",
      "command": ["npx", "-y", "aai-gateway"],
      "enabled": true
    }
  }
}

**OpenClaw:**

openclaw plugins install openclaw-aai-gateway-plugin

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.