MCP Catalogs
Home

everything vs node9-proxy

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

everything
by modelcontextprotocol
node9-proxy
by node9-ai
Stars★ 85,748★ 180
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
SecurityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

node9-proxy · Summary

Node9 is an execution security layer for AI agents that provides governance, monitoring, and audit logging through MCP integration.

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

node9-proxy · Use cases

  • Monitor and govern AI agent behavior to prevent unauthorized access to credentials or sensitive data
  • Provide real-time blocking of dangerous commands like 'rm -rf', 'DROP TABLE', or force git pushes
  • Audit and review AI agent activities over time windows to analyze patterns, costs, and potential security issues

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

node9-proxy · Install

Install via npm or Homebrew:

# npm (any platform)
npm install -g node9-ai

# macOS / Linux
brew tap node9-ai/node9 && brew install node9

Initialize with:

node9 init     # auto-wires Claude Code, Gemini CLI, Cursor, Codex, MCP servers
node9 doctor   # verify everything is wired correctly

For Claude Desktop MCP integration:

{
  "mcpServers": {
    "node9": {
      "command": "node9",
      "args": ["mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.