MCP Catalogs
Home

mcp-git-ingest vs bitbucket-mcp

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

mcp-git-ingest
by adhikasp
bitbucket-mcp
by MatanYemini
Stars★ 306★ 136
30d uses
Score4448
Official
Categories
GitHubDeveloper ToolsFile System
Developer ToolsProductivityGitHub
LanguagePythonJavaScript
Last commit16 mo agothis month

mcp-git-ingest · Summary

A Model Context Protocol server that reads GitHub repository structures and important files.

bitbucket-mcp · Summary

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

mcp-git-ingest · Use cases

  • Analyzing GitHub repositories without cloning them locally
  • Understanding codebase structure before diving into implementation details
  • Extracting specific files from repositories for documentation or analysis purposes

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

mcp-git-ingest · Install

Installation

  1. Install with uvx:
uvx --from git+https://github.com/adhikasp/mcp-git-ingest mcp-git-ingest
  1. Configure in Claude Desktop:
{
  "mcpServers": {
    "mcp-git-ingest": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/adhikasp/mcp-git-ingest", "mcp-git-ingest"]
    }
  }
}

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.