bitbucket-mcp vs gh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
bitbucket-mcp by MatanYemini | gh-mcp by shuymn | |
|---|---|---|
| Stars | ★ 136 | ★ 29 |
| 30d uses | — | — |
| Score | 48 | 44 |
| Official | — | — |
| Categories | Developer ToolsProductivityGitHub | Developer ToolsGitHubAI / LLM Tools |
| Language | JavaScript | Go |
| Last commit | this month | this month |
bitbucket-mcp · Summary
Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.
gh-mcp · Summary
GitHub CLI extension that runs github-mcp-server using existing gh authentication without manual PAT setup.
bitbucket-mcp · Use cases
- Automate PR review and approval processes for Bitbucket repositories
- Integrate Bitbucket repository information into AI assistants for development workflows
- Create AI-powered dashboards that monitor Bitbucket pull request activity
gh-mcp · Use cases
- Integrating GitHub access with AI coding assistants that support MCP
- Accessing GitHub repositories and issues without managing separate PATs
- Enabling Claude Code or other MCP clients to interact with GitHub resources
bitbucket-mcp · Install
Installation
Using NPX (Recommended)
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 Configuration
{
"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 · Install
Installation
gh extension install shuymn/gh-mcpConfiguration for Claude Desktop
Add this to your Claude Desktop configuration:
{
"github": {
"command": "gh",
"args": ["mcp"]
}
}With environment variables:
{
"github": {
"command": "gh",
"args": ["mcp"],
"env": {
"GITHUB_TOOLSETS": "repos,issues,pull_requests",
"GITHUB_READ_ONLY": "1"
}
}
}