mcp-server-atlassian-bitbucket vs mcp-github-project-manager
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-atlassian-bitbucket by aashari | mcp-github-project-manager by kunwarVivek | |
|---|---|---|
| Stars | ★ 146 | ★ 88 |
| 30d uses | — | — |
| Score | 48 | 46 |
| Official | — | — |
| Categories | Developer ToolsGitHubAI / LLM Tools | GitHubDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | 4 mo ago |
mcp-server-atlassian-bitbucket · Summary
MCP server connecting AI assistants to Atlassian Bitbucket for repository and PR management.
mcp-github-project-manager · Summary
An MCP server for GitHub project management with AI-powered task generation and requirements traceability.
mcp-server-atlassian-bitbucket · Use cases
- Automate code reviews by having AI analyze pull request changes
- Get instant insights into repository status and activity
- Manage branches and pull requests through natural language commands
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
mcp-server-atlassian-bitbucket · Install
Installation
- Set your credentials:
# Scoped API Token (recommended)
export ATLASSIAN_USER_EMAIL="your.email@company.com"
export ATLASSIAN_API_TOKEN="your_scoped_api_token"
# OR Legacy App Password (deprecated)
export ATLASSIAN_BITBUCKET_USERNAME="your_username"
export ATLASSIAN_BITBUCKET_APP_PASSWORD="your_app_password"- Add to Claude Desktop config (
~/.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"
}
}
}
}- Restart Claude Desktop to activate the server.
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": []
}
}
}