mcp-server-atlassian-bitbucket vs gitlab-mr-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-atlassian-bitbucket by aashari | gitlab-mr-mcp by kopfrechner | |
|---|---|---|
| Stars | ★ 146 | ★ 89 |
| 30d uses | — | — |
| Score | 48 | 47 |
| Official | — | — |
| Categories | Developer ToolsGitHubAI / LLM Tools | Developer ToolsGitHubProductivity |
| Language | TypeScript | JavaScript |
| Last commit | 2 mo ago | this month |
mcp-server-atlassian-bitbucket · Summary
MCP server connecting AI assistants to Atlassian Bitbucket for repository and PR management.
gitlab-mr-mcp · Summary
GitLab MR MCP server allows AI agents to interact with GitLab repositories to manage merge requests and issues.
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
gitlab-mr-mcp · Use cases
- AI-powered code review automation where an AI agent analyzes merge requests and provides automated feedback
- Project management assistance through AI that helps track and manage issues across multiple GitLab projects
- Development workflow integration where AI tools can directly interact with GitLab to streamline development processes
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.
gitlab-mr-mcp · Install
Installation
Using Smithery (Recommended)
npx -y @smithery/cli@latest install @kopfrechner/gitlab-mr-mcp --client claude --config '{"gitlabMrMcpToken":"YOUR_GITLAB_TOKEN", "gitlabMrMcpHost": "YOUR_GITLAB_HOST"}'Manual Installation
- Clone the repository:
git clone https://github.com/kopfrechner/gitlab-mr-mcp.git - Install dependencies:
npm install - Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"gitlab-mr-mcp": {
"command": "node",
"args": ["/path/to/gitlab-mr-mcp/index.js"],
"env": {
"MR_MCP_GITLAB_TOKEN": "your_gitlab_token",
"MR_MCP_GITLAB_HOST": "your_gitlab_host"
}
}
}
}