atlassian-mcp

Use the Atlassian MCP Server to interact with JIRA from coding agents (Cursor, Claude Code). This skill documents how to use the official Atlassian MCP server for JIRA and Confluence operations. Enable this MCP server in your Cursor/Claude Code settings for JIRA access.

16 stars

Best use case

atlassian-mcp is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Use the Atlassian MCP Server to interact with JIRA from coding agents (Cursor, Claude Code). This skill documents how to use the official Atlassian MCP server for JIRA and Confluence operations. Enable this MCP server in your Cursor/Claude Code settings for JIRA access.

Teams using atlassian-mcp should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/atlassian-mcp/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/data-ai/atlassian-mcp/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/atlassian-mcp/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How atlassian-mcp Compares

Feature / Agentatlassian-mcpStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Use the Atlassian MCP Server to interact with JIRA from coding agents (Cursor, Claude Code). This skill documents how to use the official Atlassian MCP server for JIRA and Confluence operations. Enable this MCP server in your Cursor/Claude Code settings for JIRA access.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Atlassian MCP Server for JIRA

The Atlassian MCP Server provides direct access to JIRA and Confluence from coding agents. This is the supported way to access Atlassian data from Cursor or Claude Code.

## Setup

### In Cursor

The Atlassian MCP Server is already configured globally. To enable it:

1. Open Cursor Settings
2. Go to Tools & MCP
3. Enable "Atlassian-MCP-Server"

Configuration location: `~/.cursor/mcp.json`

```json
{
  "mcpServers": {
    "Atlassian-MCP-Server": {
      "url": "https://mcp.atlassian.com/v1/sse"
    }
  }
}
```

### In Claude Code

Add to your Claude Code MCP settings:

```json
{
  "mcpServers": {
    "Atlassian-MCP-Server": {
      "url": "https://mcp.atlassian.com/v1/sse"
    }
  }
}
```

## Available Tools

When enabled, the Atlassian MCP Server provides these tools:

### Issue Operations

| Tool                                     | Description                     |
| ---------------------------------------- | ------------------------------- |
| `mcp_Atlassian_getJiraIssue`             | Get details of a specific issue |
| `mcp_Atlassian_createJiraIssue`          | Create a new issue              |
| `mcp_Atlassian_editJiraIssue`            | Update an existing issue        |
| `mcp_Atlassian_transitionJiraIssue`      | Change issue status             |
| `mcp_Atlassian_searchJiraIssuesUsingJql` | Search issues with JQL          |

### Comments

| Tool                                  | Description                |
| ------------------------------------- | -------------------------- |
| `mcp_Atlassian_addCommentToJiraIssue` | Add a comment to an issue  |
| `mcp_Atlassian_getJiraIssueComments`  | Get comments from an issue |

### Confluence (if enabled)

| Tool                                 | Description              |
| ------------------------------------ | ------------------------ |
| `mcp_Atlassian_createConfluencePage` | Create a Confluence page |
| `mcp_Atlassian_getConfluencePage`    | Get a Confluence page    |
| `mcp_Atlassian_searchConfluence`     | Search Confluence        |

## Common Patterns

### Get Issue Details

```
Use mcp_Atlassian_getJiraIssue with issueKey: "PROJ-123"
```

### Search for Issues

```
Use mcp_Atlassian_searchJiraIssuesUsingJql with:
  jql: "project = YOUR_PROJECT AND component = 'YOUR_COMPONENT' AND status = 'In Progress'"
```

### Create an Issue

```
Use mcp_Atlassian_createJiraIssue with:
  project: "YOUR_PROJECT"
  issueType: "Story"
  summary: "Implement new feature"
  description: "Description of the feature"
  components: ["YOUR_COMPONENT"]
```

### Transition Issue Status

```
Use mcp_Atlassian_transitionJiraIssue with:
  issueKey: "PROJ-123"
  transition: "In Progress"
```

### Add Comment

```
Use mcp_Atlassian_addCommentToJiraIssue with:
  issueKey: "PROJ-123"
  comment: "Started working on this issue"
```

## JQL Quick Reference

Common JQL queries for the Orient Task Force:

```jql
# All issues for YOUR_COMPONENT
project = YOUR_PROJECT AND component = "YOUR_COMPONENT"

# In Progress issues
project = YOUR_PROJECT AND component = "YOUR_COMPONENT" AND status = "In Progress"

# Blockers
project = YOUR_PROJECT AND component = "YOUR_COMPONENT" AND (priority = Blocker OR labels = blocked)

# Recent issues (last 7 days)
project = YOUR_PROJECT AND component = "YOUR_COMPONENT" AND created >= -7d

# My issues
project = YOUR_PROJECT AND component = "YOUR_COMPONENT" AND assignee = currentUser()

# Sprint issues
project = YOUR_PROJECT AND component = "YOUR_COMPONENT" AND sprint in openSprints()
```

## Troubleshooting

### "Tool not found" Error

Make sure the Atlassian MCP Server is enabled in your IDE settings. The tools won't appear until the server is connected.

### Authentication Issues

The Atlassian MCP Server uses OAuth. If you're not authenticated:

1. The tool will prompt you to authenticate
2. Follow the OAuth flow in your browser
3. Grant the necessary permissions

### Rate Limits

The Atlassian MCP Server is subject to Atlassian's rate limits. If you hit limits:

- Reduce query frequency
- Use more specific JQL to reduce result sets
- Cache results when appropriate

Related Skills

bgo

10
from diegosouzapw/awesome-omni-skill

Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.

Coding & Development

skill-coach

16
from diegosouzapw/awesome-omni-skill

Guides creation of high-quality Agent Skills with domain expertise, anti-pattern detection, and progressive disclosure best practices. Use when creating skills, reviewing existing skills, or when users mention improving skill quality, encoding expertise, or avoiding common AI tooling mistakes. Activate on keywords: create skill, review skill, skill quality, skill best practices, skill anti-patterns. NOT for general coding advice or non-skill Claude Code features.

skild

16
from diegosouzapw/awesome-omni-skill

Skill package manager for AI Agents — install, manage, and publish Agent Skills.

sitrep-coordinator

16
from diegosouzapw/awesome-omni-skill

Military-style Situation Report (SITREP) generation for multi-agent coordination. Creates structured status updates with completed/in-progress/blocked sections, authorization codes, handoff protocols, and clear next actions. Optimized for complex project management across multiple AI agents and human operators.

sitespeakai-automation

16
from diegosouzapw/awesome-omni-skill

Automate Sitespeakai tasks via Rube MCP (Composio). Always search tools first for current schemas.

simulation-dry-run

16
from diegosouzapw/awesome-omni-skill

How to run scenario tests against Gorlami fork RPCs (dry runs) before broadcasting live transactions. Covers config, seeding balances, runner flags, and safe script patterns.

simple-pr

16
from diegosouzapw/awesome-omni-skill

Create a simple PR from staged changes with an auto-generated commit message

simple-gemini

16
from diegosouzapw/awesome-omni-skill

Collaborative documentation and test code writing workflow using zen mcp's clink to launch gemini CLI session in WSL (via 'gemini' command) where all writing operations are executed. Use this skill when the user requests "use gemini to write test files", "use gemini to write documentation", "generate related test files", "generate an explanatory document", or similar document/test writing tasks. The gemini CLI session acts as the specialist writer, working with the main Claude model for context gathering, outline approval, and final review. For test code, codex CLI (also launched via clink) validates quality after gemini completes writing.

simo-multiomics-integration-agent

16
from diegosouzapw/awesome-omni-skill

AI-powered spatial integration of multi-omics datasets using probabilistic alignment for comprehensive tissue atlas construction and cellular state mapping.

simla-com-automation

16
from diegosouzapw/awesome-omni-skill

Automate Simla Com tasks via Rube MCP (Composio). Always search tools first for current schemas.

simd-optimize

16
from diegosouzapw/awesome-omni-skill

SIMD vectorization for Rust — detects ISA features, identifies vectorizable patterns, generates platform-specific intrinsics (ARM NEON/SVE, x86 SSE/AVX/AVX-512), validates correctness and performance. Uses tiered research with baked-in references and /deep-research fallback.

signalwire-agents-sdk

16
from diegosouzapw/awesome-omni-skill

Expert assistance for building SignalWire AI Agents in Python. Automatically activates when working with AgentBase, SWAIG functions, skills, SWML, voice configuration, DataMap, or any signalwire_agents code. Provides patterns, best practices, and complete working examples.