mcp-github-project-manager vs bitbucket-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-github-project-manager by kunwarVivek | bitbucket-mcp by MatanYemini | |
|---|---|---|
| Stars | ★ 88 | ★ 136 |
| 30d uses | — | — |
| Score | 46 | 48 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsAI / LLM Tools | Developer ToolsProductivityGitHub |
| Language | TypeScript | JavaScript |
| Last commit | 4 mo ago | this month |
mcp-github-project-manager · Summary
An MCP server for GitHub project management with AI-powered task generation and requirements traceability.
bitbucket-mcp · Summary
Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.
mcp-github-project-manager · Use cases
- AI-assisted project planning with automatic PRD generation from project ideas
- Automated task breakdown with complexity analysis and effort estimation
- Requirements traceability management with bidirectional links and impact analysis
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
mcp-github-project-manager · Install
Installation
Option 1: Install from npm (recommended)
npm install -g mcp-github-project-managerOption 2: Install from source
git clone https://github.com/kunwarVivek/mcp-github-project-manager.git
cd mcp-github-project-mannpm install
npm run buildSet up environment variables
cp .env.example .env
# Edit .env with your GitHub token and detailsClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"github-project-manager": {
"command": "mcp-github-project-manager",
"args": []
}
}
}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"
}
}
}
}