atlassian/atlassian-mcp-server
If you are the rightful owner of atlassian-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Atlassian MCP Server is a cloud-based bridge that connects Atlassian Cloud sites with external tools, enabling real-time interaction with Jira and Confluence data.
[!NOTE] This feature is currently in public beta, which means:
- Core functionality is available, but some advanced features are still under development.
- The experience may vary across different clientsâClaude, for instance, works best on the Team or Enterprise plan.
- Weâre actively gathering feedback to improve the product before its general availability (GA) release.
For more information, read our blog post - Introducing Atlassian's Remote Model Context Protocol (MCP) Server - Work Life by Atlassian
Atlassian MCP Server
The Model Context Protocol (MCP) is a new, standardized protocol designed by Anthropic to manage context between large language models (LLMs) and external systems. This repository offers an MCP Server for Atlassian.
The Remote MCP Server is a cloud-based bridge between your Atlassian Cloud site and compatible external tools. Once configured, it enables those tools to interact with Jira and Confluence data in real-time. This functionality is powered by secure OAuth 2.1 authorization, which ensures all actions respect the userâs existing access controls.
The Remote MCP Server helps bring Atlassian data into your existing workflows:
- Summarize and search Jira and Confluence content without switching tools.
- Create and update issues or pages based on natural language commands.
- Bulk process tasks like generating tickets from meeting notes or specs. Itâs designed to support developers, content creators, and project managers working within IDEs or AI platforms.
Before you start
Ensure your environment meets the necessary requirements to successfully set up the Remote MCP Server. This section outlines the technical prerequisites, access considerations, and security details.
Prerequisites
Before connecting to the Remote MCP Server, review the setup requirements for your environment:
Cloud-based Setup
- An Atlassian Cloud site with Jira and/or Confluence
- Access to an AI Client (Claude for Teams for example)
- A modern browser to complete the OAuth 2.0 authorization flow
Desktop Setup for Local Clients
- An Atlassian Cloud site with Jira and/or Confluence
- A supported IDE (for example, Claude desktop, VS Code, or Cursor) or a custom MCP-compatible client
- Node.js v18+ installed to run the local MCP proxy (mcp-remote). Download from nodejs.org
- A modern browser for completing the OAuth login
Beta access and limits
The beta is open to all Atlassian Cloud customers. No special sign-up is required. However, usage is subject to rate limits:
- Standard plan: Moderate usage thresholds.
- Premium/Enterprise plans: Higher usage quotas (1,000 requests/hour plus per-user limits).
Data and security
Security is a core focus of the Remote MCP Server:
- All traffic is encrypted via HTTPS using TLS 1.2 or later.
- OAuth 2.0 ensures secure authentication and access control.
- Data access respects Jira and Confluence user permissions.
How It Works
Architecture and Communication
- A supported client connects to the server endpoint:
https://mcp.atlassian.com/v1/sse
- A secure browser-based OAuth 2.0 flow is triggered.
- Once authorized, the client streams contextual data and receives real-time responses from Jira or Confluence.
Permission Management
Access is granted only to data that the user already has permission to view in Atlassian Cloud. All actions respect existing project or space-level roles. OAuth tokens are scoped and session-based. Once connected, you can perform a variety of useful tasks from within your supported client.
Example Workflows
Jira workflows
Use these examples to understand how to interact with Jira:
- Search: âFind all open bugs in Project Alpha.â
- Create/update: âCreate a story titled âRedesign onboardingâ.â
- Bulk create: âMake five Jira issues from these notes.â
Confluence workflows
Access and manage documentation content directly:
- Summarize: âSummarize the Q2 planning page.â
- Create: âCreate a page titled âTeam Goals Q3â.â
- Navigate: âWhat spaces do I have access to?â
Combined Tasks
Integrate actions across Jira and Confluence:
- Link content: âLink these three Jira tickets to the âRelease Planâ page.â
[!Note] Actual capabilities vary depending on your permission level and client platform.
Managing access
If you're an admin preparing your team to use the Remote MCP Server, keep the following considerations in mind:
- Ensure users have product access to Jira and/or Confluence via Atlassian Admin.
- Authorization tokens are tied to the userâs current product permissionsâcheck these if data isnât accessible.
- App authorizations can be revoked by end users through their profile settings or by admins in the Connect apps section of Atlassian Admin for site-level control.
- Consider establishing usage guidelines or policies for teams leveraging AI-driven content generation.
- Reach out to your Atlassian account representative for advice on OAuth scope control and long-term support planning.
Setting up Atlassian MCP Server
Cloud-based Clients
Depending on the tool you're using, the setup process may vary. We recommend you navigate to the exact instructions for connecting to an MCP client through the tool's documentation. Here is an example for setting up Claude.ai
Desktop/Local Clients
[!NOTE] If youâre using VSCode, you can also install it directly by browsing their curated list of MCP servers.
- Open your terminal
- Run the following command to start the proxy and begin authentication:
npx -y mcp-remote https://mcp.atlassian.com/v1/sse
[!NOTE] If this command doesn't work due to a version-related issue, try specifying an older version of mcp-remote. The example below uses version 0.1.13, but you may use another version if needed:
npx -y mcp-remote@0.1.13 https://mcp.atlassian.com/v1/sse
- A browser window will open. Log in using your Atlassian credentials and approve the required permissions.
- Once authorized, return to your IDE and configure the MCP server settings by adding the following atlassian entry to the server configuration file (e.g.
mcp.json
,mcp_config.json
):
"mcp.servers": {
"atlassian": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.atlassian.com/v1/sse"]
}
}
- Save and reload your client's MCP extension or plugin.
Support and feedback
Your feedback plays a crucial role in shaping the Remote MCP Server. If you encounter bugs, limitations, or have suggestions:
- Visit the Atlassian Support Portal to report issues.
- Share your experiences and feature requests on the Atlassian Community.
- Enterprise customers can contact their Atlassian Customer Success Manager for advanced support and roadmap discussions.
- Weâre excited to collaborate with you to improve this capability before its general availability.