スキル一覧に戻る
orient-bot

atlassian-mcp

by orient-bot

Orient - AI Agent Platform

5🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: atlassian-mcp description: 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 operations instead of the ai_first_* tools. Enable this MCP server in your Cursor/Claude Code settings for JIRA access.

Atlassian MCP Server for JIRA

The Atlassian MCP Server provides direct access to JIRA from coding agents. Use this instead of ai_first_* JIRA tools when you need full JIRA capabilities in 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

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

In Claude Code

Add to your Claude Code MCP settings:

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

Available Tools

When enabled, the Atlassian MCP Server provides these tools:

Issue Operations

ToolDescription
mcp_Atlassian_getJiraIssueGet details of a specific issue
mcp_Atlassian_createJiraIssueCreate a new issue
mcp_Atlassian_editJiraIssueUpdate an existing issue
mcp_Atlassian_transitionJiraIssueChange issue status
mcp_Atlassian_searchJiraIssuesUsingJqlSearch issues with JQL

Comments

ToolDescription
mcp_Atlassian_addCommentToJiraIssueAdd a comment to an issue
mcp_Atlassian_getJiraIssueCommentsGet comments from an issue

Confluence (if enabled)

ToolDescription
mcp_Atlassian_createConfluencePageCreate a Confluence page
mcp_Atlassian_getConfluencePageGet a Confluence page
mcp_Atlassian_searchConfluenceSearch 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:

# 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()

When to Use Which

NeedUse This
Quick issue lookup from CursorAtlassian MCP Server
Create/update issues from IDEAtlassian MCP Server
Complex queries in IDEAtlassian MCP Server (full JQL)
Automated workflows (WhatsApp/Slack)ai_first_* tools
Presentation updatesai_first_* tools (has slide integration)
SLA monitoringai_first_check_sla_breaches
Digest/summary reportsai_first_get_daily_digest, ai_first_get_weekly_summary

Comparison

FeatureAtlassian MCPaifirst* tools
AuthenticationOAuth via AtlassianAPI token
Issue CRUDFull supportRead + links only
CommentsFull supportNot available
TransitionsFull supportNot available
JQL SearchFull supportPre-built queries
Workspace integrationNoneSlack/WhatsApp
Presentation syncNoneBuilt-in

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

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です