mcp-server-atlassian-bitbucket vs gh-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-atlassian-bitbucket by aashari | gh-mcp by shuymn | |
|---|---|---|
| Stars | ★ 146 | ★ 29 |
| 30天用量 | — | — |
| 综合分 | 48 | 44 |
| 官方 | — | — |
| 分类 | 开发者工具GitHub 集成AI / LLM 工具 | 开发者工具GitHub 集成AI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 2 个月前 | 本月 |
mcp-server-atlassian-bitbucket · 概述
MCP 服务器连接 AI 助手与 Atlassian Bitbucket,实现代码库和拉取请求管理。
gh-mcp · 概述
GitHub CLI 扩展,使用现有的 gh 身份验证运行 github-mcp-server,无需手动设置 PAT。
mcp-server-atlassian-bitbucket · 使用场景
- 通过 AI 分析拉取请求变更来自动化代码审查
- 快速获取代码库状态和活动的深入洞察
- 通过自然语言命令管理分支和拉取请求
gh-mcp · 使用场景
- 将 GitHub 访问与支持 MCP 的 AI 编码助手集成
- 无需管理单独的 PAT 即可访问 GitHub 仓库和问题
- 使 Claude Code 或其他 MCP 客户端能够与 GitHub 资源交互
mcp-server-atlassian-bitbucket · 安装
安装
- 设置您的凭据:
# 范围化 API 令牌(推荐)
export ATLASSIAN_USER_EMAIL="your.email@company.com"
export ATLASSIAN_API_TOKEN="your_scoped_api_token"
# 或者传统应用密码(已弃用)
export ATLASSIAN_BITBUCKET_USERNAME="your_username"
export ATLASSIAN_BITBUCKET_APP_PASSWORD="your_app_password"- 添加到 Claude Desktop 配置文件 (
~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-bitbucket"],
"env": {
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_scoped_api_token"
}
}
}
}- 重启 Claude Desktop 以激活服务器。
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"
}
}
}