MCP Catalogs
首页

everything vs open-code-review

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
open-code-review
by raye-deng
Stars★ 85,748★ 23
30天用量
综合分7743
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具安全
实现语言TypeScriptTypeScript
最近提交本月1 个月前

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

open-code-review · 概述

AI代码质量门,检测AI生成代码中的幻觉包、过时API和安全反模式。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

open-code-review · 使用场景

  • 作为CI/CD流水线中的质量门,用于检查AI生成的代码
  • 在AI IDE中实时审查代码
  • 使用AI驱动的建议自动修复检测到的问题

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

open-code-review · 安装

安装CLI工具:

npm install -g @opencodereview/cli

安装MCP服务器:

npm install -g @opencodereview/mcp-server

在Claude Desktop中,添加到claude_desktop_config.json

{
  "mcpServers": {
    "open-code-review": {
      "command": "npx",
      "args": ["-y", "@opencodereview/mcp-server"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。