MCP Catalogs
Home

mcp-server-atlassian-bitbucket vs github-to-mcp

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

mcp-server-atlassian-bitbucket
by aashari
github-to-mcp
by nirholas
Stars★ 146★ 28
30d uses
Score4845
Official
Categories
Developer ToolsGitHubAI / LLM Tools
Developer ToolsAI / LLM ToolsGitHub
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

mcp-server-atlassian-bitbucket · Summary

MCP server connecting AI assistants to Atlassian Bitbucket for repository and PR management.

github-to-mcp · Summary

Converts GitHub repositories into MCP servers by extracting tools from OpenAPI, GraphQL & REST APIs.

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

github-to-mcp · Use cases

  • Enable AI assistants to explore and interact with codebases programmatically
  • Automatically generate MCP servers from existing API documentation
  • Integrate AI assistants with proprietary or internal code repositories

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.

github-to-mcp · Install

Web UI (Easiest)

Visit [github-to-mcp.vercel.app](https://github-to-mcp.vercel.app) — Paste any GitHub URL, click Generate, download your MCP server.

CLI (One Command)

npx @nirholas/github-to-mcp https://github.com/stripe/stripe-node

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "github-repo": {
      "command": "npx",
      "args": ["@nirholas/github-to-mcp", "https://github.com/your/repo"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.