bitbucket-mcp vs github-brain
Side-by-side comparison to help you pick between these two MCP servers.
bitbucket-mcp by MatanYemini | github-brain by wham | |
|---|---|---|
| Stars | ★ 136 | ★ 75 |
| 30d uses | — | — |
| Score | 48 | 46 |
| Official | — | — |
| Categories | Developer ToolsProductivityGitHub | GitHubDeveloper ToolsAI / LLM Tools |
| Language | JavaScript | Go |
| Last commit | this month | 3 mo ago |
bitbucket-mcp · Summary
Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.
github-brain · Summary
GitHub Brain MCP server summarizes GitHub discussions, issues, and PRs with local database for fast responses.
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
github-brain · Use cases
- Summarizing GitHub discussions and pull requests for team meetings
- Analyzing user contributions in a specific time period
- Creating efficient reports on GitHub activities without hitting API limits
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"
}
}
}
}github-brain · Install
npm i -g github-brainOr with npx:
npx github-brain@latestMCP Configuration
Claude Desktop
Add to Claude MCP configuration:
{
"mcpServers": {
"github-brain": {
"type": "stdio",
"command": "github-brain",
"args": ["mcp"],
"env": {
"ORGANIZATION": "your-org"
}
}
}