this is part of my personal project to develop mcp server for bitbucket
{
"mcpServers": {
"personal-bitbucket-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
this is part of my personal project to develop mcp server for bitbucket
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 142 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
An open-source AI agent that brings the power of Gemini directly into your terminal.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
The leading, most token-efficient MCP server for GitHub source code exploration via tree-sitter AST parsing
MCP Security Weekly
Get CVE alerts and security updates for Personal Bitbucket Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides AI assistants with tools to interact with Bitbucket Cloud repositories. Built with Quarkus, the Supersonic Subatomic Java Framework.
Author: Tedy Saputro | Contact: tedy@saputro.dev
The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). This server implements MCP to expose Bitbucket operations as tools that AI assistants like Claude, ChatGPT, or other LLM-powered applications can use.
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/.
repository:read, pullrequest:read, pullrequest:writedocker run -p 8080:8080 \
-e BITBUCKET_EMAIL=your-email@example.com \
-e BITBUCKET_API_TOKEN=your-api-token \
-e BITBUCKET_WORKSPACE=your-workspace \
subrutin/bitbucket-mcp-server:latest
This server supports multiple transport protocols. Choose the method that works best for your client:
The stdio transport allows direct process communication without needing a running HTTP server. This is the universal method that works with all MCP clients.
For Claude Desktop, add this to your config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"bitbucket": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "BITBUCKET_EMAIL=your-email@example.com",
"-e", "BITBUCKET_API_TOKEN=your-api-token",
"-e", "BITBUCKET_WORKSPACE=your-workspace",
"subrutin/bitbucket-mcp-server:stdio-0.0.2"
]
}
}
}
Restart Claude Desktop, and you'll see the Bitbucket tools available in the 🔨 tools menu.
For Cursor IDE, add to your Cursor settings (same format as Claude Desktop):
{
"mcpServers": {
"bitbucket": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "BITBUCKET_EMAIL=your-email@example.com",
"-e", "BITBUCKET_API_TOKEN=your-api-token",
"-e", "BITBUCKET_WORKSPACE=your-workspace",
"subrutin/bitbucket-mcp-server:stdio-0.0.2"
]
}
}
}
For VS Code with MCP extension (same format):
{
"mcp.servers": {
"bi
... [View full README on GitHub](https://github.com/tedysaputro/personal-bitbucket-mcp-server#readme)