mcp-server-atlassian-bitbucket vs mcp-git-ingest
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-atlassian-bitbucket by aashari | mcp-git-ingest by adhikasp | |
|---|---|---|
| Stars | ★ 146 | ★ 306 |
| 30d uses | — | — |
| Score | 48 | 44 |
| Official | — | — |
| Categories | Developer ToolsGitHubAI / LLM Tools | GitHubDeveloper ToolsFile System |
| Language | TypeScript | Python |
| Last commit | 2 mo ago | 16 mo ago |
mcp-server-atlassian-bitbucket · Summary
MCP server connecting AI assistants to Atlassian Bitbucket for repository and PR management.
mcp-git-ingest · Summary
A Model Context Protocol server that reads GitHub repository structures and important files.
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
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
mcp-server-atlassian-bitbucket · Install
Installation
- 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"- 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"
}
}
}
}- Restart Claude Desktop to activate the server.
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"]
}
}
}