octocode-mcp vs bitbucket-mcp
Side-by-side comparison to help you pick between these two MCP servers.
octocode-mcp by bgauryy | bitbucket-mcp by MatanYemini | |
|---|---|---|
| Stars | ★ 832 | ★ 136 |
| 30d uses | — | — |
| Score | 52 | 48 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsGitHub | Developer ToolsProductivityGitHub |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
octocode-mcp · Summary
MCP server for semantic code research across GitHub/GitLab and local repositories with advanced LSP integration.
bitbucket-mcp · Summary
Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.
octocode-mcp · Use cases
- Code exploration and pattern matching across public and private repositories
- Advanced code analysis and documentation generation using AST and dependency graphs
- Pull request review with LSP flow tracing across multiple domains
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
octocode-mcp · Install
Installation
Recommended: Octocode CLI
npx octocode-cli installManual MCP Configuration
Add to your MCP configuration file:
{
"mcpServers": {
"octocode": {
"command": "npx",
"args": ["octocode-mcp@latest"]
}
}
}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"
}
}
}
}