bitbucket-mcp vs github-to-mcp
Side-by-side comparison to help you pick between these two MCP servers.
bitbucket-mcp by MatanYemini | github-to-mcp by nirholas | |
|---|---|---|
| Stars | ★ 136 | ★ 28 |
| 30d uses | — | — |
| Score | 48 | 45 |
| Official | — | — |
| Categories | Developer ToolsProductivityGitHub | Developer ToolsAI / LLM ToolsGitHub |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
bitbucket-mcp · Summary
Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.
github-to-mcp · Summary
Converts GitHub repositories into MCP servers by extracting tools from OpenAPI, GraphQL & REST APIs.
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
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
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"
}
}
}
}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-nodeClaude 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": {}
}
}
}