{
"mcpServers": {
"stash-mcp": {
"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.
MCP Server to connect with your Bitbucket Server (aka Stash)
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 54 days ago. 4 stars.
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.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.
MCP Security Weekly
Get CVE alerts and security updates for Stash Mcp 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 for Atlassian Bitbucket Server (Stash), distributed as a Docker image on Docker Hub. It gives AI assistants access to your repositories, pull requests, code reviews, builds, and search — through 40 purpose-built tools.
40 tools covering comprehensive Bitbucket Server workflows:
| Category | Tools | Highlights | |----------|-------|-----------| | Projects | 1 | Discover projects | | Dashboard | 5 | User-centric PR views + server info | | Repositories | 3 | Repos, overview, file content | | Git | 3 | Branches, tags, file listing | | Search | 4 | Code, commits, PRs, users | | History | 5 | List/inspect commits, compare refs, full commit context | | Pull Requests | 7 | List/get/context/diff + create/update + approve | | Comments | 4 | Read, write, reply with code context | | Tasks | 4 | Full CRUD for review tasks | | Builds | 3 | CI/CD status per commit/PR/repo | | Integrations | 1 | Jira issue links |
These tools reduce multiple API calls to a single invocation:
get_pull_request_context — Complete PR with comments, tasks, diff, activityget_repository_overview — Branches, tags, and open PRs in one callget_commit_context — Commit details with changes and diffAdd the following to your VS Code MCP configuration file
(Command Palette → MCP: Open user configuration):
{
"servers": {
"stash-bitbucket": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "BITBUCKET_URL",
"-e", "BITBUCKET_TOKEN",
"diomonogatari/stash-mcp:latest"
],
"env": {
"BITBUCKET_URL": "https://your-stash-server.com/",
"BITBUCKET_TOKEN": "your_personal_access_token"
},
"type": "stdio"
}
}
}
That's it. VS Code will pull the image on first use and start the server automatically.
Tip — pin to a specific tag instead of
latest(e.g.diomonogatari/stash-mcp:1.1.0) to avoid running a stale local image when a new version is published. Docker skips the pull when a local image already has thelatesttag. If you must uselatest, force a pull withdocker run --pull=always ... diomonogatari/stash-mcp:latest.
Pass additional environment variables to tune resi