atlassian-mcp

atlassian-mcp is a skill for Claude Code, Codex from eric861129/SKILLS_All-in-one. It costs 75 tokens per session (1,172 once invoked), scanned A, a copy of atlassian-mcp, MIT.

A guide and integration for using Atlassian products through MCP, a standard way for an agent to call external tools, especially Jira and Confluence.

In plain words
What is it for?
It helps set up an Atlassian MCP server, write Jira Query Language (JQL) and Confluence Query Language (CQL) searches, manage tickets and sprints, edit documentation, and troubleshoot integrations.
Why use it?
It provides a structured process for querying project data, checking permissions, choosing authentication, and handling larger Atlassian workflows.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps set up an Atlassian MCP server, write Jira Query Language (JQL) and Confluence Query Language (CQL) searches, manage tickets and sprints, edit documentation, and troubleshoot integrations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eric861129/skills_all-in-one/atlassian-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eric861129/SKILLS_All-in-one --skill atlassian-mcp
Clone the repo
git clone --depth 1 https://github.com/eric861129/SKILLS_All-in-one

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for atlassian-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/atlassian-mcp/github.svg)](https://agentmods.dev/skills/eric861129/skills_all-in-one/atlassian-mcp)
Your own site
<a href="https://agentmods.dev/skills/eric861129/skills_all-in-one/atlassian-mcp"><img src="https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/atlassian-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for atlassian-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/eric861129/skills_all-in-one/atlassian-mcp"><img src="https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/atlassian-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,172 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 98% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.01172
Opus 5 $0.00037 $0.00586
Sonnet 5 $0.00015 $0.00234
Haiku 4.5 $0.00007 $0.00117

Measured 12d ago against content hash 690d789c5a93, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

atlassian-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

98% identical to atlassian-mcp — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

public/SKILLS/Collaboration & Project Management/atlassian-mcp/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Atlassian MCP Expert

When to Use This Skill

  • Querying Jira issues with JQL filters
  • Searching or creating Confluence pages
  • Automating sprint workflows and backlog management
  • Setting up MCP server authentication (OAuth/API tokens)
  • Syncing meeting notes to Jira tickets
  • Generating documentation from issue data
  • Debugging Atlassian API integration issues
  • Choosing between official vs open-source MCP servers

Core Workflow

  1. Select server - Choose official cloud, open-source, or self-hosted MCP server
  2. Authenticate - Configure OAuth 2.1, API tokens, or PAT credentials
  3. Design queries - Write JQL for Jira, CQL for Confluence; validate with maxResults=1 before full execution
  4. Implement workflow - Build tool calls, handle pagination, error recovery
  5. Verify permissions - Confirm required scopes with a read-only probe before any write or bulk operation
  6. Deploy - Configure IDE integration, test permissions, monitor rate limits

Reference Guide

Load detailed guidance based on context:

Topic Reference Load When
Server Setup references/mcp-server-setup.md Installation, choosing servers, configuration
Jira Operations references/jira-queries.md JQL syntax, issue CRUD, sprints, boards, issue linking
Confluence Ops references/confluence-operations.md CQL search, page creation, spaces, comments
Authentication references/authentication-patterns.md OAuth 2.0, API tokens, permission scopes
Common Workflows references/common-workflows.md Issue triage, doc sync, sprint automation

Quick-Start Examples

JQL Query Samples

# Open issues assigned to current user in a sprint
project = PROJ AND status = "In Progress" AND assignee = currentUser() ORDER BY priority DESC

# Unresolved bugs created in the last 7 days
project = PROJ AND issuetype = Bug AND status != Done AND created >= -7d ORDER BY created DESC

# Validate before bulk: test with maxResults=1 first
project = PROJ AND sprint in openSprints() AND status = Open ORDER BY created DESC

Read the full file on GitHub · 125 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 125 lines · 75 tokens per session scan A 690d789c5a93

Subscribe to this mod's changes

atlassian-mcp is a skill published in the GitHub repository eric861129/SKILLS_All-in-one (52 stars, last pushed 4mo ago), licensed MIT. It adds 75 tokens to every session and 1,172 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to atlassian-mcp, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

fest-execution

Execute active festival tasks. Use when finding the next task, marking tasks completed/blocked/reset, committing with festival traceability, advancing workflow steps, and validating sequence progress.

Obedience-Corp/festival · 38 tokens

fest-planning

Plan and scaffold festivals. Use when creating festival/phase/sequence/task structure, enforcing naming rules, linking festivals to projects, and promoting lifecycle states.

Obedience-Corp/festival · 34 tokens

cross-campaign

Discover and reference other camps, projects, and files across camp boundaries. Use when the user mentions another camp or campaign by name, references work done "in another project/camp", or needs to find/copy/compare code across camps.

Obedience-Corp/festival · 52 tokens

camp-projects

Manage a camp's projects. Use when committing inside projects/, deciding status/pull/push scope (root vs submodule vs all), or creating/removing project worktrees.

Obedience-Corp/festival · 41 tokens

camp-workitems

Find, filter, choose, create, or adopt camp work items with camp workitem, camp wi, or camp workitems. Use when a user wants current active work across intents, designs, explore notes, festivals, or tracked workflow directories; when agents need safe camp workitem --json output; or when creating/adopting tracked…

Obedience-Corp/festival · 79 tokens

speckit-companion-mark-complete

../../../.specify/extensions/companion/.specify-dev/agent-commands/claude/speckit-companion-mark-complete/SKILL.md.

alfredoperez/speckit-companion · 0 tokens