Db3 Atlassian
FreeNot checkedLightweight MCP server for Jira, Confluence, and Bitbucket — read, create, and update from your AI IDE.
About
Lightweight MCP server for Jira, Confluence, and Bitbucket — read, create, and update from your AI IDE.
README
Lightweight MCP server for Jira, Confluence, and Bitbucket — read, create, and update from your AI IDE.
Install
Step 1: Get an API Token
Go to https://id.atlassian.com/manage-profile/security/api-tokens and create a new token.
Step 2: Create your .env file
mkdir -p ~/.db3-atlassian-mcp
cat > ~/.db3-atlassian-mcp/.env << EOF
JIRA_BASE_URL=https://yourcompany.atlassian.net
[email protected]
JIRA_API_KEY=your-api-token-here
# Optional: Bitbucket Cloud
BITBUCKET_WORKSPACE=your-workspace
[email protected]
BITBUCKET_API_TOKEN=your-bitbucket-api-token
# Optional: Enable additional Bitbucket tool tiers
# ENABLE_BITBUCKET_PR_TOOLS=true
# ENABLE_BITBUCKET_ADMIN_TOOLS=true
EOF
Step 3: Add to your IDE's MCP config
Tip: If you skip Step 2, you can put your credentials directly in the
envblock below instead of using a.envfile. Either approach works.
Kiro
You can ask Kiro to do this for you: "Add db3-atlassian-mcp to my MCP config using uvx with my Atlassian credentials"
Or manually open ~/.kiro/settings/mcp.json and add inside "mcpServers":
"db3.atlassian-mcp": {
"command": "uvx",
"args": ["db3-atlassian-mcp@latest"],
"disabled": false,
"autoApprove": [],
"env": {
"JIRA_BASE_URL": "https://yourcompany.atlassian.net",
"JIRA_USER": "[email protected]",
"JIRA_API_KEY": "your-api-token-here"
}
}
The env block is optional if you already created a .env file in Step 2.
VS Code / Cursor / Windsurf
Add to .vscode/mcp.json in your workspace (or global settings):
{
"mcpServers": {
"db3.atlassian-mcp": {
"command": "uvx",
"args": ["db3-atlassian-mcp@latest"],
"env": {
"JIRA_BASE_URL": "https://yourcompany.atlassian.net",
"JIRA_USER": "[email protected]",
"JIRA_API_KEY": "your-api-token-here"
}
}
}
}
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"db3.atlassian-mcp": {
"command": "uvx",
"args": ["db3-atlassian-mcp@latest"],
"env": {
"JIRA_BASE_URL": "https://yourcompany.atlassian.net",
"JIRA_USER": "[email protected]",
"JIRA_API_KEY": "your-api-token-here"
}
}
}
}
Step 4: Restart your IDE
The MCP server will appear in your sidebar as db3.atlassian-mcp.
Once connected, ask Kiro something like "Read Jira ticket PROJECT-123" to verify it's working.
What You Can Do
Jira
- Fetch any ticket by key
- Search tickets with JQL
- View sub-tasks for a parent ticket
- Create new tickets with optional parent for sub-task linking
- Update tickets — change fields, transition status, add comments
- Assign tickets by name or email (no account IDs needed)
- Attach files to tickets
Confluence
- Read any page by pasting its URL or page ID
- Search pages with CQL
- Browse all pages in a space
- Create new pages (with optional parent page)
- Update existing pages with rich formatting
Bitbucket Cloud (core — always on)
- List and search repositories in a workspace
- List branches for a repository
- List and view pull requests
Bitbucket Cloud (opt-in via ENABLE_BITBUCKET_PR_TOOLS)
- List and view commits
- View PR diffs, file diffs, and diffstats
- Create pull requests
- Add, reply to, update, and delete PR comments
- Add inline comments on specific diff lines
Bitbucket Cloud (opt-in via ENABLE_BITBUCKET_ADMIN_TOOLS)
- View build statuses on commits and PRs
- List pipeline runs
- Resolve and reopen PR comment threads
- Create, update, and delete PR tasks
- Fetch repository metadata
- List branches and commits
- Fetch commit details and build statuses
- List recent Bitbucket Pipelines runs
- List and inspect pull requests
- Fetch pull request diffs, diffstats, comments, and activity
- Fetch pull request build statuses
- Summarize pull request status with reviewers, approvals, build status results, and changed files
- Create pull requests
- Add pull request comments
Configuration
Credentials
The server reads credentials from a .env file. It searches in this order:
~/.db3-atlassian-mcp/.env(recommended).envin the current working directory
You can also pass credentials via your MCP config's env block (see Step 3 above).
Bitbucket Tool Tiers
By default, only core Bitbucket tools are enabled (repos, branches, PRs) to keep the tool count low. Enable additional tiers via environment variables:
| Variable | Default | Tools Added |
|---|---|---|
| (core — always on) | — | list_bitbucket_repos, get_bitbucket_repo, search_bitbucket_repos, list_bitbucket_branches, list_bitbucket_pull_requests, get_bitbucket_pull_request |
ENABLE_BITBUCKET_PR_TOOLS |
false |
Commits, diffs, diffstats, PR comments, inline comments, replies, activity, status, create PR (+15 tools) |
ENABLE_BITBUCKET_ADMIN_TOOLS |
false |
Build statuses, pipelines, resolve/reopen comments, PR tasks (+10 tools) |
Example with all tiers enabled:
"db3.atlassian-mcp": {
"command": "uvx",
"args": ["db3-atlassian-mcp@latest"],
"env": {
"JIRA_BASE_URL": "https://yourcompany.atlassian.net",
"JIRA_USER": "[email protected]",
"JIRA_API_KEY": "your-api-token-here",
"ENABLE_BITBUCKET_PR_TOOLS": "true",
"ENABLE_BITBUCKET_ADMIN_TOOLS": "true"
}
}
Bitbucket Cloud
Bitbucket support is optional. Set these values only if you want Bitbucket tools:
BITBUCKET_WORKSPACE=your-workspace
[email protected]
BITBUCKET_API_TOKEN=your-bitbucket-api-token
BITBUCKET_WORKSPACE lets tool calls omit the workspace argument. For
bitbucket.org/your-workspace/..., use:
BITBUCKET_WORKSPACE=your-workspace
Use a Bitbucket Cloud API token scoped to the operations you need. Read-only tools need repository and pull request read scopes. Pipeline status tools need pipeline read scope. Creating pull requests or comments needs write access for pull requests.
Alternative: Install from Source
git clone https://github.com/db3net/db3-atlassian-mcp.git
cd db3-atlassian-mcp
bash install.sh
The installer prompts for your credentials, sets up a Python venv, validates the connection, and configures Kiro automatically.
Updating
If using uvx with @latest, it automatically pulls the newest version each time your IDE starts. If installed from source, run the installer again.
Version Pinning
Using @latest is convenient but means updates are applied automatically. For production or security-sensitive environments, pin to a specific version:
"args": ["db3-atlassian-mcp==1.1.0"]
This way you only get updates when you explicitly change the version number. Check PyPI for available versions.
Uninstall
rm -rf ~/.db3-atlassian-mcp
Then remove the "db3.atlassian-mcp" entry from your IDE's MCP config.
Troubleshooting
Server shows "connection failed" or ENOENT
- Make sure
uvis installed:pip install uvorbrew install uv - Verify
uvxis on your PATH:which uvx - Check that Python 3.10+ is available:
python3 --version
401 Unauthorized
- Verify your API token hasn't expired (Atlassian tokens can have expiration dates)
- Check that
JIRA_USERis your email address, not your username - Regenerate your token at https://id.atlassian.com/manage-profile/security/api-tokens
.env file not found
- Confirm the file exists:
cat ~/.db3-atlassian-mcp/.env - Make sure all three variables are set:
JIRA_BASE_URL,JIRA_USER,JIRA_API_KEY - The URL should not have a trailing slash
Tools not showing up
- Restart your IDE after adding the MCP config
- Check your IDE's MCP server logs for errors
- In Kiro: look at the MCP Servers panel in the sidebar and click reconnect
License
MIT
Install Db3 Atlassian in Claude Desktop, Claude Code & Cursor
unyly install db3-atlassian-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add db3-atlassian-mcp -- uvx db3-atlassian-mcpFAQ
Is Db3 Atlassian MCP free?
Yes, Db3 Atlassian MCP is free — one-click install via Unyly at no cost.
Does Db3 Atlassian need an API key?
No, Db3 Atlassian runs without API keys or environment variables.
Is Db3 Atlassian hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Db3 Atlassian in Claude Desktop, Claude Code or Cursor?
Open Db3 Atlassian on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbCompare Db3 Atlassian with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
