What It Does — Two Paths to Jira & Confluence
Atlassian's official Rovo MCP Server (GA since Feb 4, 2026) and the community sooperset/mcp-atlassian server both give Claude Code direct access to your project management and documentation tools. The official server offers 46+ tools across Jira, Confluence, Compass, and Jira Service Management via a cloud-hosted endpoint at https://mcp.atlassian.com/v1/mcp. The community server provides 72 tools.
Setup — Cloud-Hosted vs. Self-Hosted
For the official server: Add this to your Claude Code MCP configuration:
{
"mcpServers": {
"atlassian": {
"command": "stdio",
"args": ["npx", "-y", "@modelcontextprotocol/server-atlassian"],
"env": {
"ATLASSIAN_MCP_URL": "https://mcp.atlassian.com/v1/mcp"
}
}
}
}
You'll complete OAuth 2.1 consent. No local dependencies.
For the community server: You need Python infrastructure. Install via pip:
pip install mcp-atlassian
Then configure with API tokens or OAuth 2.0. Data stays behind your firewall.
When To Use Which — The Decision Matrix
Choose Atlassian's official server if:
- Your organization is on Atlassian Cloud only
- You require audit logging for all AI actions
- You need zero-install setup and corporate backing
- Your workflows don't depend on paginated JQL searches (bug #118 drops results)
- You never edit Confluence pages with rich content (risk of content loss)
Choose the community server (sooperset) if:
- You run Jira/Confluence Server or Data Center (v8.14+/v6.0+)
- You need sprint management (move issues between sprints)
- You require self-hosting for data sovereignty
- You use Jira Automation (MCP-created issues skip automation in official)
- You can tolerate 137 open issues for 72 tools vs. 46+
Critical Bugs That Affect Your Workflow
The official server has known issues that will break specific Claude Code tasks:
- Pagination broken - Asking Claude to "find all high-priority bugs from last quarter" will silently drop results beyond
maxResults. - ADF conversion failures - Updating Jira issue descriptions often breaks formatting.
- Confluence content loss - Rich content and inline comments are stripped during edits.
- Authentication fragile - VSCode OAuth errors may interrupt your session.
Rate Limits and Token Economics
Official server calls count against your Atlassian plan:
- Free: 500 calls/hour
- Standard: 1,000 calls/hour
- Premium/Enterprise: Up to 10,000/hour
Claude Code Pro Tip: Since Claude Code recently announced CLI integration saving 37% tokens vs MCP servers, consider whether a simple curl to Jira API via Claude Code's direct command execution might be more efficient for read-only tasks.
The Verdict for Claude Code Users
For most development teams, the community server's broader toolset (72 vs 46 tools) and self-hosting capability make it the better choice—if you have Python infrastructure. The official server's GA status and audit logging are compelling for large enterprises on Cloud-only stacks, but the pagination and editing bugs are deal-breakers for automated workflows.
Actionable next step: Test the official server with a simple read-only query first: "Claude, connect to our Jira and list the last 5 tickets assigned to me." If that works, gradually expand to writes. If you hit pagination limits or need server support, switch to the community version.




