MCP Catalogs
首页

review-flow vs everything

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

review-flow
by DGouron
everything
by modelcontextprotocol
Stars★ 37★ 85,748
30天用量
综合分4477
官方
分类
开发者工具AI / LLM 工具GitHub 集成
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

review-flow · 概述

面向 GitLab MR 和 GitHub PR 的多智能体 AI 代码审查系统,集成了 MCP。

everything · 概述

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

review-flow · 使用场景

  • 使用 AI 为开发团队自动执行代码审查
  • 实施专门的架构、安全和测试检查
  • 跟踪团队代码质量指标和开发者表现

everything · 使用场景

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

review-flow · 安装

安装

npm install -g reviewflow

初始化

reviewflow init

这个交互向导将配置服务器,生成 webhook 密钥,并扫描您的文件系统以查找 git 仓库。

启动服务器

reviewflow start

仪表板将在 http://localhost:3847 上可用

Claude Desktop 集成

添加到 Claude Desktop 的 config.json:

{
  "mcpServers": {
    "reviewflow": {
      "command": "npx",
      "args": ["reviewflow", "mcp"]
    }
  }
}

配置 webhooks

在您的 GitLab/GitHub 项目中设置 webhooks,指向服务器的 webhook 端点。

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。