← ClaudeAtlas

atlassian-mcplisted

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.
diegosouzapw/awesome-omni-skill · ★ 43 · AI & Automation · score 61
Install: claude install-skill diegosouzapw/awesome-omni-skill
# 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 | | ------------------------