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 | — | — |
| Score | 44 | 48 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | Developer ToolsProductivityGitHub |
| Language | Python | JavaScript |
| Last commit | 16 mo ago | this 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
- Install with uvx:
uvx --from git+https://github.com/adhikasp/mcp-git-ingest mcp-git-ingest- 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@latestClaude 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"
}
}
}
}