bitbucket-mcp vs shippie
并排对比,帮你在这两个 MCP server 之间做选择。
bitbucket-mcp by MatanYemini | shippie by mattzcarey | |
|---|---|---|
| Stars | ★ 136 | ★ 2,356 |
| 30天用量 | — | — |
| 综合分 | 48 | 54 |
| 官方 | — | — |
| 分类 | 开发者工具效率工具GitHub 集成 | 开发者工具AI / LLM 工具GitHub 集成 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 本月 | 6 个月前 |
bitbucket-mcp · 概述
Bitbucket MCP 服务器让 AI 助手可以与 Bitbucket 代码库和拉取请求交互。
shippie · 概述
Shippie 是一个将 AI 模型集成到 CI/CD 管道中的代码审查 MCP 客户端。
bitbucket-mcp · 使用场景
- 自动化 Bitbucket 仓库的 PR 审查和批准流程
- 将 Bitbucket 仓库信息集成到 AI 助手的工作流程中
- 创建监控 Bitbucket 拉取请求活动的 AI 驱动仪表板
shippie · 使用场景
- 在 CI/CD 管道中自动化代码审查,及早发现安全和错误问题
- 在提交前对暂存的更改进行本地代码审查
- 通过 MCP 与外部工具集成,增强代码分析能力
bitbucket-mcp · 安装
安装
使用 NPX(推荐)
BITBUCKET_URL="https://api.bitbucket.org/2.0" \
BITBUCKET_WORKSPACE="your-workspace" \
BITBUCKET_USERNAME="your-username" \
BITBUCKET_PASSWORD="your-app-password" \
npx -y bitbucket-mcp@latestClaude Desktop 配置
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "bitbucket-mcp@latest"],
"env": {
"BITBUCKET_URL": "https://api.bitbucket.org/2.0",
"BITBUCKET_WORKSPACE": "your-workspace",
"BITBUCKET_USERNAME": "your-username",
"BITBUCKET_PASSWORD": "your-app-password"
}
}
}
}shippie · 安装
安装
- 通过 npm 安装 Shippie:
npx shippie review- 要与 Claude Desktop 一起使用,请在您的 config.json 中配置 MCP:
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["shippie", "mcp"]
}
}
}