bitbucket-mcp vs gh-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
bitbucket-mcp by MatanYemini | gh-mcp by shuymn | |
|---|---|---|
| Stars | ★ 136 | ★ 29 |
| 30天用量 | — | — |
| 综合分 | 48 | 44 |
| 官方 | — | — |
| 分类 | 开发者工具效率工具GitHub 集成 | 开发者工具GitHub 集成AI / LLM 工具 |
| 实现语言 | JavaScript | Go |
| 最近提交 | 本月 | 本月 |
bitbucket-mcp · 概述
Bitbucket MCP 服务器让 AI 助手可以与 Bitbucket 代码库和拉取请求交互。
gh-mcp · 概述
GitHub CLI 扩展,使用现有的 gh 身份验证运行 github-mcp-server,无需手动设置 PAT。
bitbucket-mcp · 使用场景
- 自动化 Bitbucket 仓库的 PR 审查和批准流程
- 将 Bitbucket 仓库信息集成到 AI 助手的工作流程中
- 创建监控 Bitbucket 拉取请求活动的 AI 驱动仪表板
gh-mcp · 使用场景
- 将 GitHub 访问与支持 MCP 的 AI 编码助手集成
- 无需管理单独的 PAT 即可访问 GitHub 仓库和问题
- 使 Claude Code 或其他 MCP 客户端能够与 GitHub 资源交互
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"
}
}
}
}gh-mcp · 安装
安装
gh extension install shuymn/gh-mcpClaude Desktop 配置
将以下内容添加到您的 Claude Desktop 配置中:
{
"github": {
"command": "gh",
"args": ["mcp"]
}
}使用环境变量:
{
"github": {
"command": "gh",
"args": ["mcp"],
"env": {
"GITHUB_TOOLSETS": "repos,issues,pull_requests",
"GITHUB_READ_ONLY": "1"
}
}
}