Secure Jira and Confluence access for AI agents
Jira, Confluence, and other Atlassian products via the official MCP server
Through Atlassian, agents can search and read Jira issues and Confluence pages, and create or update them when your policies allow it — every call runs through your policies and is logged for audit. A single resource covers both products.
Server URL: https://mcp.atlassian.com/v1/mcp
Setup
- Navigate to Resources and click Add Resource
- Select Atlassian from the catalog
- On Choose how to install Atlassian, click Per-org dynamic registration — the only mode Atlassian offers
Clicking that card installs the resource with all tools and scopes pre-configured; Atlassian then shows an Admin setup required dialog with a Setup guide button pointing at Dynamic client registration below, which you do need to complete.
Each user connects their own Atlassian account via OAuth when they first use an Atlassian tool. Navigate to Connections to manage linked accounts.
Credential modes
Atlassian uses Dynamic Client Registration (RFC 7591) only — the gateway registers a per-organization OAuth client with Atlassian automatically on first install. SecureAuth-app and Bring-your-own-app modes are not available for this resource.
See Credential modes for how this compares to other catalog resources.
Dynamic client registration
DCR itself is automatic — the gateway registers an OAuth client with Atlassian on first install with no admin action required. The one piece of admin setup Atlassian requires is allowlisting the gateway origin on the Rovo MCP server config. Without this step, end-user OAuth completes but tool calls fail at runtime.
Settings → Rovo → Rovo MCP server → Domains
In your Atlassian admin console at admin.atlassian.com, add your gateway origin to Your domains:
https://oauth.aisecurity.services.<region>.connect.secureauth.com/**Replace <region> with your region (us, eu, aus). The /** suffix authorizes any path under that origin.
Available tools
Tool names are matched exactly by policy rules unless you use a wildcard, so copy them from here verbatim — and check the Available Tools card on the resource's Overview tab in the Agent Authority console for the authoritative list of what your install actually exposes.
| Tool | Description |
|---|---|
addCommentToJiraIssue | Add a comment to a Jira issue |
addWorklogToJiraIssue | Log work against a Jira issue |
atlassianUserInfo | Get information about the authenticated Atlassian user |
createConfluenceFooterComment | Create a footer comment on a Confluence page |
createConfluenceInlineComment | Create an inline comment on Confluence content |
createConfluencePage | Create a Confluence page |
createIssueLink | Create a link between two Jira issues |
createJiraIssue | Create a new Jira issue |
editJiraIssue | Edit fields on an existing Jira issue |
fetch | Fetch a Jira or Confluence resource by URL |
getAccessibleAtlassianResources | Get accessible Atlassian Cloud sites and their IDs |
getConfluenceCommentChildren | List child comments of a Confluence comment |
getConfluencePage | Get the full content of a Confluence page |
getConfluencePageDescendants | List descendant pages under a given parent page |
getConfluencePageFooterComments | List footer comments on a Confluence page |
getConfluencePageInlineComments | List inline comments on a Confluence page |
getConfluenceSpaces | List Confluence spaces |
getIssueLinkTypes | List available Jira issue link types |
getJiraIssue | Get a Jira issue by key or ID |
getJiraIssueRemoteIssueLinks | Get remote issue links on a Jira issue |
getJiraIssueTypeMetaWithFields | Get create-metadata fields for a Jira issue type |
getJiraProjectIssueTypesMetadata | Get issue types available in a Jira project |
getPagesInConfluenceSpace | List pages in a Confluence space |
getTransitionsForJiraIssue | List available transitions for a Jira issue |
getVisibleJiraProjects | List Jira projects visible to the authenticated user |
lookupJiraAccountId | Look up a Jira account ID by email or username |
search | Search across Jira and Confluence content |
searchConfluenceUsingCql | Search Confluence content using CQL |
searchJiraIssuesUsingJql | Search Jira issues using JQL |
transitionJiraIssue | Transition a Jira issue through its workflow |
updateConfluencePage | Update an existing Confluence page |
Required scopes
read:jira-work— read projects, issues, and commentswrite:jira-work— create and update issues, comments, and worklogsread:jira-user— read Jira user informationmanage:jira-project— manage project-level configurationmanage:jira-configuration— manage global Jira configurationread:confluence-content.all— read all Confluence content including pages and blog postsread:confluence-content.summary— read content summarieswrite:confluence-content— create and update Confluence contentread:confluence-space.summary— read space summaries and metadatawrite:confluence-space— modify space settingsread:confluence-user— read Confluence user informationread:confluence-groups— read Confluence group membershipread:confluence-props— read content propertieswrite:confluence-props— write content propertiessearch:confluence— search Confluence contentoffline_access— maintain access when the user is offline
Policy examples
Rules are evaluated top to bottom and the first match wins; a call that matches no rule is denied. New rules are created at the top of the list, so create the rule you want evaluated last first.
- Read-only access: allow
get*,search*,fetch,atlassianUserInfo,lookupJiraAccountId, then disable or delete your organization's seeded Allow all rule. The allow rule alone restricts nothing —createJiraIssue,editJiraIssue,transitionJiraIssue, and every other write tool keep matching Allow all. Removing it is org-wide, so add the allows everything else needs first; alternatively keep Allow all and use the deny recipe below. - Block writes: add deny rules for
create*,edit*,update*,transition*,addCommentToJiraIssue,addWorklogToJiraIssueabove any allow rules. - Allow full access for a specific agent: scope an allow rule for
*to agentclaude-codeon this MCP server. This grants — it does not restrict other agents, who fall through to whatever rule matches next.
Next steps
- Create a policy — start from the read-only pattern in Policy examples above.
- Credential modes — see how DCR compares to the other modes catalog resources use.
- Give Claude read-only access to Jira — a worked policy for this exact resource.