MCP Catalogs
Home

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
Score4847
Official
Categories
Developer ToolsGitHubAI / LLM Tools
Developer ToolsGitHubProductivity
LanguageTypeScriptJavaScript
Last commit2 mo agothis 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

  1. 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"
  1. 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"
      }
    }
  }
}
  1. 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

  1. Clone the repository: git clone https://github.com/kopfrechner/gitlab-mr-mcp.git
  2. Install dependencies: npm install
  3. 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.