Skip to main content

MCP server that connects Claude to Jira and Confluence for AI-powered research, technical design, and ticket creation

Project description

atlassian-buddy

PyPI Python

MCP server that connects Claude to Jira and Confluence. Engineers can research spikes, generate technical solutions with Mermaid architecture diagrams, write Confluence docs, and create Jira epic + story breakdowns through natural conversation — no Anthropic API key required.


Features

  • Research — search Confluence and Jira before generating anything
  • Design — produce Mermaid architecture/flow diagrams as part of every confluence doc
  • Write — create or update Confluence pages (markdown + Mermaid → Confluence storage format)
  • Ticket — create Jira Epics, Stories with acceptance criteria, and Tasks; supports both next-gen and classic projects
  • Zero LLM cost — Claude itself provides all intelligence; no separate AI API key needed

Installation

pip install atlassian-buddy
# or
uv add atlassian-buddy

Setup

Step 1 — Create ~/.atlassian_buddy.toml

Create ~/.atlassian_buddy.toml in your home directory with your Atlassian details:

# macOS / Linux
touch ~/.atlassian_buddy.toml
[atlassian]
base_url = "https://yourorg.atlassian.net"
email    = "you@yourorg.com"

[confluence]
# If your Confluence is on a different domain than Jira, set this:
# base_url = "https://yourorg-docs.atlassian.net"
space_key      = "ENG"
parent_page_id = "123456"

[jira]
project_key        = "PLAT"
epic_issue_type    = "Epic"
story_issue_type   = "Story"
task_issue_type    = "Task"
default_label      = "spike"
story_points_field = "customfield_10016"
epic_link_field    = "customfield_10014"

[tickets]
story_point_scale = [1, 2, 3, 5, 8, 13]

Tip: Config is also discovered automatically in your project root or any parent directory up to the git root — useful when running atlassian-buddy from a specific repo. The search order is: current directory → git root walk-up → ~/.atlassian_buddy.toml.

Org-specific required fields

Some Jira projects enforce mandatory custom fields (e.g. Account, Tier, Work type). Add them under [jira.required_fields] and they will be merged into every ticket created:

[jira.required_fields]
customfield_11139 = 15                  # plain integer (check your field type)
customfield_11518 = { id = "12203" }    # single select
customfield_11664 = [{ id = "13089" }]  # multi-select (array)

To find the correct field IDs and allowed values for your project, call the Jira create-meta API:

GET /rest/api/3/issue/createmeta?projectKeys=PROJ&issuetypeNames=Epic&expand=projects.issuetypes.fields

Step 2 — Set your API token

Generate an Atlassian API token at https://id.atlassian.com/manage-profile/security/api-tokens and export it:

export ATLASSIAN_API_TOKEN="your-token-here"

Never put the token in .atlassian_buddy.toml — it is read exclusively from the environment.


Connect to Claude

atlassian-buddy works with both Claude Desktop (GUI app) and Claude Code (CLI). Follow the guide for whichever you use — or both.


Option A — Claude Desktop

Step 1 — Find the config file

Platform Path
macOS ~/Library/Application Support/Claude/claude_desktop_config.json
Windows %APPDATA%\Claude\claude_desktop_config.json

Step 2 — Add atlassian-buddy to mcpServers

{
  "mcpServers": {
    "atlassian-buddy": {
      "command": "atlassian-buddy",
      "env": {
        "ATLASSIAN_API_TOKEN": "your-token-here"
      }
    }
  }
}

macOS/Homebrew tip: If atlassian-buddy is not on your PATH, use the full binary path:

"command": "/opt/homebrew/bin/atlassian-buddy"

Run which atlassian-buddy in your terminal to find the path.

Step 3 — Restart Claude Desktop

Quit and reopen the app. A hammer icon (🔨) in the toolbar confirms the tools are active.


Option B — Claude Code (CLI)

Step 1 — Add atlassian-buddy globally

Run this once so the server is available in every project:

claude mcp add atlassian-buddy atlassian-buddy -s user -e ATLASSIAN_API_TOKEN="your-token-here"

macOS/Homebrew tip: Use the full path if atlassian-buddy is not on your PATH:

claude mcp add atlassian-buddy /opt/homebrew/bin/atlassian-buddy -s user -e ATLASSIAN_API_TOKEN="your-token-here"

Step 2 — Verify the connection

claude mcp list

You should see:

atlassian-buddy: /opt/homebrew/bin/atlassian-buddy  - ✓ Connected

Step 3 — Start a new Claude Code session

MCP servers are loaded at session start. Open a fresh session in any directory and atlassian-buddy tools will be available automatically.


Example conversations

Start a session by invoking the workflow prompt at the top of your conversation:

/mcp__atlassian-buddy__buddy_workflow

Then talk naturally:

  • "I need to spike on replacing our job queue with Temporal. Research what we have, design a solution with a diagram, write a spike doc in Confluence under the Platform space, then create an epic and stories in the PLAT project."
  • "Search Confluence for our auth service architecture and summarise what you find."
  • "Break down the confluence doc you just wrote into Jira tickets — 1 epic, stories with acceptance criteria, fibonacci points."
  • "What Jira tickets are open in PLAT related to observability?"

Tools

Tool Inputs Description
search_confluence query, space_key?, limit? CQL full-text search across Confluence
get_confluence_page page_id Fetch full page content by ID
search_jira query, project_key?, limit? JQL full-text search across Jira
get_jira_issue issue_key_or_url Fetch a Jira issue by key (PLAT-123) or full URL
write_confluence_doc title, body_markdown, space_key?, parent_page_id? Create a Confluence page (markdown + Mermaid → storage format)
create_epic summary, description, project_key?, label? Create a Jira Epic
create_story epic_key, summary, description, acceptance_criteria, story_points?, project_key?, label? Create a Jira Story linked to an Epic
create_task epic_key, summary, description, project_key?, label? Create a Jira Task linked to an Epic
get_project_config Show current config targets (API token redacted)

Configuration reference

All fields in .atlassian_buddy.toml:

Field Required Description
atlassian.base_url Yes Your Atlassian Cloud domain, e.g. https://myorg.atlassian.net
atlassian.email Yes Your Atlassian account email
confluence.base_url No Override if Confluence is on a different domain than Jira
confluence.space_key No Confluence space key for new confluence docs, e.g. ENG
confluence.parent_page_id No Page ID to nest new docs under
jira.project_key No Jira project key, e.g. PLAT
jira.epic_issue_type No Issue type name for epics (default: Epic)
jira.story_issue_type No Issue type name for stories (default: Story)
jira.task_issue_type No Issue type name for tasks (default: Task)
jira.default_label No Label applied to all created tickets (default: spike)
jira.story_points_field No Custom field ID for story points; varies per instance
jira.epic_link_field No Custom field ID for epic link; classic projects only
jira.required_fields No Org-specific mandatory fields merged into every create call
tickets.story_point_scale No Fibonacci scale used when prompting for estimates

Contributing

git clone https://github.com/de-cryptor/atlassian-buddy
cd atlassian-buddy
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest

License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atlassian_buddy-0.1.3.tar.gz (23.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atlassian_buddy-0.1.3-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file atlassian_buddy-0.1.3.tar.gz.

File metadata

  • Download URL: atlassian_buddy-0.1.3.tar.gz
  • Upload date:
  • Size: 23.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for atlassian_buddy-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e59f265aa3c06c875e978b46a91bbc6f51652ab762b3b72f557e87d1ea10a436
MD5 4a303ec7c7919c246c8c3c9b4c00d22b
BLAKE2b-256 950d55a2dc530fe50979621c81f8b304fd5745ed8ec0a193ee525cce0e419f45

See more details on using hashes here.

File details

Details for the file atlassian_buddy-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for atlassian_buddy-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f0efb518f86b265fad240fbe13ee13cb2e5ca8f4816a61519fde181064e68d1c
MD5 407abadf9f39f96083e44aa725875e27
BLAKE2b-256 0b77d985fece5f88e39d3f7531aecce4972c18624c785e8a1bc128d37bb21e0f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page