github-mcp-server vs shippie
并排对比,帮你在这两个 MCP server 之间做选择。
github-mcp-server by github | shippie by mattzcarey | |
|---|---|---|
| Stars | ★ 29,881 | ★ 2,356 |
| 30天用量 | — | — |
| 综合分 | 64 | 54 |
| 官方 | — | — |
| 分类 | GitHub 集成开发者工具效率工具 | 开发者工具AI / LLM 工具GitHub 集成 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 本月 | 6 个月前 |
github-mcp-server · 概述
GitHub 官方 MCP 服务器将 AI 工具连接到 GitHub 平台,实现仓库管理、问题自动化和代码分析。
shippie · 概述
Shippie 是一个将 AI 模型集成到 CI/CD 管道中的代码审查 MCP 客户端。
github-mcp-server · 使用场景
- 在 AI 助手中浏览和分析代码仓库
- 自动化创建和管理 GitHub 问题与拉取请求
- 监控和分析 CI/CD 管道和 GitHub Actions 工作流
shippie · 使用场景
- 在 CI/CD 管道中自动化代码审查,及早发现安全和错误问题
- 在提交前对暂存的更改进行本地代码审查
- 通过 MCP 与外部工具集成,增强代码分析能力
github-mcp-server · 安装
安装选项
远程安装(推荐)
添加到您的 MCP 主机配置(例如 VS Code 1.101+)中:
{
"servers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
}
}
}对于 Claude Desktop,添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"github": {
"command": "http",
"args": ["https://api.githubcopilot.com/mcp/"]
}
}
}本地安装
使用 Docker:
docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN=your_token ghcr.io/github/github-mcp-server或者克隆仓库后从源码安装。
shippie · 安装
安装
- 通过 npm 安装 Shippie:
npx shippie review- 要与 Claude Desktop 一起使用,请在您的 config.json 中配置 MCP:
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["shippie", "mcp"]
}
}
}