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
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.
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.
Before connecting to the Remote MCP Server, review the setup requirements for your environment:
- 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
- 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
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).
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.
- 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.
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.
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.”
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?”
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.
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.
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
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 [email protected] 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.
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.