MCP Catalogs
Home

github-mcp-server vs bitbucket-mcp

Side-by-side comparison to help you pick between these two MCP servers.

github-mcp-server
by github
bitbucket-mcp
by MatanYemini
Stars★ 29,881★ 136
30d uses
Score6448
Official
Categories
GitHubDeveloper ToolsProductivity
Developer ToolsProductivityGitHub
LanguageGoJavaScript
Last committhis monththis month

github-mcp-server · Summary

GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code analysis.

bitbucket-mcp · Summary

Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.

github-mcp-server · Use cases

  • Browse and analyze code repositories from within AI assistants
  • Automate creation and management of GitHub issues and pull requests
  • Monitor and analyze CI/CD pipelines and GitHub Actions workflows

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-mcp-server · Install

Installation Options

Remote Installation (Recommended)

Add to your MCP host configuration (e.g., VS Code 1.101+):

{
  "servers": {
    "github": {
      "type": "http",
      "url": "https://api.githubcopilot.com/mcp/"
    }
  }
}

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "github": {
      "command": "http",
      "args": ["https://api.githubcopilot.com/mcp/"]
    }
  }
}

Local Installation

Using Docker:

docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN=your_token ghcr.io/github/github-mcp-server

Or install from source after cloning the repository.

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@latest

Claude 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.