MCP Catalogs
Home

everything vs open-code-review

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

everything
by modelcontextprotocol
open-code-review
by raye-deng
Stars★ 85,748★ 23
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

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

open-code-review · Summary

AI-powered code quality gate that detects hallucinated packages, stale APIs, and security anti-patterns in AI-generated code.

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

open-code-review · Use cases

  • Integrate as a quality gate in CI/CD pipelines for AI-generated code
  • Use in AI IDEs (Claude Desktop, Cursor) to review code in real-time
  • Automatically fix detected issues with AI-powered suggestions

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

open-code-review · Install

Install the CLI tool:

npm install -g @opencodereview/cli

Install the MCP Server:

npm install -g @opencodereview/mcp-server

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "open-code-review": {
      "command": "npx",
      "args": ["-y", "@opencodereview/mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.