← Back to Articles
mcpatlassianjiraconfluencecursoridesetup2026

Atlassian MCP Server: Cursor IDE Setup Guide (2026)

Connect Atlassian to Cursor IDE via MCP in under 5 minutes. Config for Jira, Confluence & Bitbucket MCP servers. Copy-paste mcp.json snippets included.

By Web MCP GuideMarch 23, 20263 min read


Atlassian MCP Server: Cursor IDE Setup Guide (2026)

Connecting Cursor IDE to your Atlassian workspace via MCP lets your AI assistant read Jira tickets, search Confluence docs, and interact with Bitbucket — all without leaving your editor.

What You Can Do With Atlassian MCP + Cursor


  • Ask Cursor to "summarize open Jira tickets in the current sprint"

  • Pull Confluence documentation directly into your coding context

  • Create and update Jira issues from inside your IDE

  • Reference architecture docs while writing code
  • Prerequisites


  • Cursor IDE v0.40+

  • Atlassian Cloud account (Jira/Confluence)

  • Atlassian API token (generate one here)

  • Node.js 18+
  • Step 1: Install the Atlassian MCP Server

    npm install -g @modelcontextprotocol/server-atlassian

    Or use it directly via npx (no install required):

    npx -y @modelcontextprotocol/server-atlassian

    Step 2: Get Your Atlassian API Token

    1. Go to id.atlassian.com/manage-profile/security/api-tokens
    2. Click Create API token
    3. Name it "Cursor MCP" and copy the token

    Step 3: Configure Cursor IDE

    Open Cursor Settings (Cmd/Ctrl + ,) → Search "MCP" → Click Edit MCP Settings

    Add this configuration:

    {
    "mcpServers": {
    "atlassian": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-atlassian"],
    "env": {
    "ATLASSIAN_URL": "https://your-domain.atlassian.net",
    "ATLASSIAN_EMAIL": "your@email.com",
    "ATLASSIAN_API_TOKEN": "your-api-token-here"
    }
    }
    }
    }

    Replace your-domain, your@email.com, and your-api-token-here with your actual values.

    Step 4: Restart Cursor and Test

    1. Restart Cursor completely
    2. Open the AI chat panel (Cmd/Ctrl + L)
    3. Try: "List my open Jira tickets"

    If it works, you'll see your actual Jira issues returned in the chat.

    Useful Prompts to Try


  • "Show me all Jira tickets assigned to me in the current sprint"

  • "Search Confluence for our API authentication docs"

  • "Create a Jira bug ticket for the login issue I just fixed"

  • "What does the onboarding guide say about environment setup?"
  • Combining With Other MCP Servers

    For maximum productivity, combine Atlassian MCP with other servers:

    {
    "mcpServers": {
    "atlassian": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-atlassian"],
    "env": {
    "ATLASSIAN_URL": "https://your-domain.atlassian.net",
    "ATLASSIAN_EMAIL": "your@email.com",
    "ATLASSIAN_API_TOKEN": "your-api-token"
    }
    },
    "github": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-github"],
    "env": {
    "GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."
    }
    }
    }
    }

    Now Cursor can cross-reference your Jira tickets with GitHub PRs automatically.

    Troubleshooting

    "Server failed to start" — Check your API token is correct and hasn't expired.

    "Permission denied" — Make sure your Atlassian account has API access enabled.

    Jira not returning results — Verify your ATLASSIAN_URL ends with .atlassian.net and doesn't have a trailing slash.

    Related Guides


  • How to Set Up MCP Servers in Cursor IDE (2026)

  • MCP vs API Integration: What's the Difference?

  • Top 10 MCP Servers You Should Know