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 | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-everythingnode9-proxy · Install
Install via npm or Homebrew:
# npm (any platform)
npm install -g node9-ai
# macOS / Linux
brew tap node9-ai/node9 && brew install node9Initialize with:
node9 init # auto-wires Claude Code, Gemini CLI, Cursor, Codex, MCP servers
node9 doctor # verify everything is wired correctlyFor Claude Desktop MCP integration:
{
"mcpServers": {
"node9": {
"command": "node9",
"args": ["mcp"]
}
}
}