Atlassian Bamboo MCP Server
Provides tools for interacting with Atlassian Bamboo CI/CD, including listing projects and plans, triggering and stopping builds, retrieving build and deployment logs, managing deployment projects, and monitoring build and deployment queues.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Atlassian Bamboo MCP ServerCheck latest build status for PROJ-PLAN"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Atlassian Bamboo MCP Server
A Model Context Protocol (MCP) server that brings Atlassian Bamboo CI/CD operations directly into AI assistants like Claude Code and Cursor.
❌ Without Bamboo MCP
Working with Bamboo CI/CD requires constant context switching:
❌ Switching to browser to check build status
❌ Manually navigating through Bamboo UI to find logs
❌ Copy-pasting build keys and deployment IDs
❌ No AI assistance for CI/CD troubleshooting
✅ With Bamboo MCP
Bamboo MCP brings your CI/CD operations directly into your AI workflow:
What's the status of the latest build for project MY-PROJECT?Show me the deployment logs for deployment result 2661941325Trigger a build for plan PROJ-PLAN with variable ENV=stagingNo tab-switching, no manual navigation — just ask and get instant CI/CD insights.
Features
26 tools covering all major Bamboo operations
Build logs with actual content (not just URLs)
Deployment logs with full output
Proxy support for corporate environments
TypeScript with full type safety
Installation
Prerequisites
Node.js 18+
Bamboo personal access token (how to create)
From Source
git clone https://github.com/norus/atlassian-bamboo-mcp.git
cd atlassian-bamboo-mcp
npm install
npm run buildFrom npm
npm install -g bamboo-mcp-serverConfiguration
The server requires these environment variables:
Variable | Required | Description |
| Yes | Base URL of your Bamboo server |
| Yes | Personal access token |
| No | Proxy URL (e.g., |
Creating a Bamboo Token
Log into Bamboo
Go to Profile → Personal access tokens
Click Create token
Give it a name and appropriate permissions
Copy the token (you won't see it again)
Setup
Run this command:
claude mcp add bamboo -- npx -y bamboo-mcp-server@latestOr add to ~/.claude/settings.json:
{
"mcpServers": {
"bamboo": {
"command": "npx",
"args": ["-y", "bamboo-mcp-server@latest"],
"env": {
"BAMBOO_URL": "https://bamboo.example.com",
"BAMBOO_TOKEN": "your-token"
}
}
}
}Add to your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"bamboo": {
"command": "npx",
"args": ["-y", "bamboo-mcp-server@latest"],
"env": {
"BAMBOO_URL": "https://bamboo.example.com",
"BAMBOO_TOKEN": "your-token",
"BAMBOO_PROXY": "http://proxy:8080"
}
}
}
}Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"bamboo": {
"command": "npx",
"args": ["-y", "bamboo-mcp-server@latest"],
"env": {
"BAMBOO_URL": "https://bamboo.example.com",
"BAMBOO_TOKEN": "your-token"
}
}
}
}BAMBOO_URL="https://bamboo.example.com" \
BAMBOO_TOKEN="your-token" \
npx bamboo-mcp-serverBuild the image
docker build -t bamboo-mcp-server .Run with Docker
docker run -i --rm \
-e BAMBOO_URL="https://bamboo.example.com" \
-e BAMBOO_TOKEN="your-token" \
-e BAMBOO_PROXY="http://host.docker.internal:8080" \
bamboo-mcp-serverProxy configuration
When using a proxy from Docker:
macOS/Windows: Use
host.docker.internalto reach the host (e.g.,http://host.docker.internal:8080)Linux: Use
--network hostflag or the host's actual IP address
Use with Claude Desktop
{
"mcpServers": {
"bamboo": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "BAMBOO_URL=https://bamboo.example.com",
"-e", "BAMBOO_TOKEN=your-token",
"-e", "BAMBOO_PROXY=http://host.docker.internal:8080",
"bamboo-mcp-server"
]
}
}
}Docker Compose
services:
bamboo-mcp:
build: .
environment:
- BAMBOO_URL=https://bamboo.example.com
- BAMBOO_TOKEN=${BAMBOO_TOKEN}
- BAMBOO_PROXY=http://host.docker.internal:8080
stdin_open: trueAvailable Tools
Server (2)
Tool | Description |
| Get Bamboo server version and state |
| Check server health status |
Projects (2)
Tool | Description |
| List all projects |
| Get project details by key |
Plans (6)
Tool | Description |
| List all build plans |
| Get plan details by key |
| Search plans by name |
| Enable a build plan |
| Disable a build plan |
| Clone a build plan to a new plan |
Branches (2)
Tool | Description |
| List branches for a plan |
| Get branch details |
Builds (7)
Tool | Description |
| Trigger a build (supports variables) |
| Stop a running build |
| Get specific build result |
| Get latest build result |
| List build results with filters |
| Get build log file URLs |
| Get build logs with actual content |
Queue (2)
Tool | Description |
| Get current build queue |
| Get deployment queue status |
Deployments (6)
Tool | Description |
| List deployment projects |
| Get deployment project details |
| Create a deployment project linked to a build plan |
| Get deployment results for environment |
| Get deployment result with logs |
| Trigger a deployment |
Example Prompts
Show me all failed builds in the last 24 hoursWhat's blocking the deployment queue?Get the logs for build PROJ-PLAN-123 and tell me why it failedTrigger a build for MY-PROJECT with variable DEPLOY_ENV=stagingList all branches for plan MY-PLAN and their build statusDevelopment
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run tests with coverage
npm run test:coverage
# Run locally
BAMBOO_URL="https://bamboo.example.com" \
BAMBOO_TOKEN="your-token" \
node dist/index.jsTroubleshooting
Verify
BAMBOO_URLis correct and accessibleIf behind a proxy, set
BAMBOO_PROXYCheck if your token has expired
Verify your
BAMBOO_TOKENis correctEnsure the token hasn't expired
Check token permissions in Bamboo
Restart Claude Code/Desktop after config changes
Verify the path to
dist/index.jsis absoluteCheck Claude's MCP logs for errors
Security
No hardcoded secrets — all credentials via environment variables
Input validation — Zod schemas on all tool inputs
Proxy support — works in corporate environments
Read-heavy — most operations are read-only
For security issues, please report via GitHub Security tab.
License
MIT
Contributing
Contributions welcome! Please read our contributing guidelines before submitting PRs.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/norus/atlassian-bamboo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server