MCP Catalogs
首页

shippie vs gh-mcp

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

shippie
by mattzcarey
gh-mcp
by shuymn
Stars★ 2,356★ 29
30天用量
综合分5444
官方
分类
开发者工具AI / LLM 工具GitHub 集成
开发者工具GitHub 集成AI / LLM 工具
实现语言TypeScriptGo
最近提交6 个月前本月

shippie · 概述

Shippie 是一个将 AI 模型集成到 CI/CD 管道中的代码审查 MCP 客户端。

gh-mcp · 概述

GitHub CLI 扩展,使用现有的 gh 身份验证运行 github-mcp-server,无需手动设置 PAT。

shippie · 使用场景

  • 在 CI/CD 管道中自动化代码审查,及早发现安全和错误问题
  • 在提交前对暂存的更改进行本地代码审查
  • 通过 MCP 与外部工具集成,增强代码分析能力

gh-mcp · 使用场景

  • 将 GitHub 访问与支持 MCP 的 AI 编码助手集成
  • 无需管理单独的 PAT 即可访问 GitHub 仓库和问题
  • 使 Claude Code 或其他 MCP 客户端能够与 GitHub 资源交互

shippie · 安装

安装

  1. 通过 npm 安装 Shippie:
npx shippie review
  1. 要与 Claude Desktop 一起使用,请在您的 config.json 中配置 MCP:
{
  "mcpServers": {
    "shippie": {
      "command": "npx",
      "args": ["shippie", "mcp"]
    }
  }
}

gh-mcp · 安装

安装

gh extension install shuymn/gh-mcp

Claude Desktop 配置

将以下内容添加到您的 Claude Desktop 配置中:

{
  "github": {
    "command": "gh",
    "args": ["mcp"]
  }
}

使用环境变量:

{
  "github": {
    "command": "gh",
    "args": ["mcp"],
    "env": {
      "GITHUB_TOOLSETS": "repos,issues,pull_requests",
      "GITHUB_READ_ONLY": "1"
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。