I've attempted to have AI reach out to Jira Goals/Projects (Atlas) via MCP but it doesn't have that functionality. Are there plans to add this tool to the existing MCP tools in the future?
Context:
While the project & goal updates allow for following (curating) on a per user and even on a tag basis, there is a need to take these granular updates out of the system and share with leadership and possibly add additional information for a single consolidated update.
It would be great to be able to consume the granular updates via AI (MCP) and then generate the content in the final format/tool.
As of now, the Remote MCP Server, Atlassian’s AI integration layer, is in public beta, but it does not yet support Jira Goals (Atlas) or Project-specific data via MCP. The only resources currently available via MCP are Jira issues, Confluence content, and Compass (if applicable).
What’s Available Today
What's Not Supported Yet
What You Can Do
Response provided by Jer-nee Consulting, an Atlassian Gold Solutions Partner. We're here to support you in your success, feel free to reach out if you have nay other questions or issues.
Hi @Ryan Beymer,
If the MCP connector is critical to managing your goals, we have it in Oboard, an Atlassian Marketplace app for strategy management.
This is how it works: https://youtu.be/E_HnOZ7YtXA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ryan Beymer - Did you ever find a way to access Project and/or Goals through MCP or any other programmatic means?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Morning @Matt Richards
I hadn't checked in a while but appears they have released an api for this a few weeks ago. https://jira.atlassian.com/browse/ATLAS-140?focusedId=3752744&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-3752744
I was able to hook up claude to it and get back values for a project. Here's a quick start based on what I've found.
------------------------------
Endpoint:
POST https://{subdomain}.atlassian.net/gateway/api/graphqlAuth: Basic auth with your Atlassian email + API token (generate one at https://id.atlassian.com/manage-profile/security/api-tokens), base64 encoded:
Authorization: Basic base64(you@example.com:your_api_token)Look up a project by its display key:
query GetProject {
projects_byKey(
projectKey: "YOUR-PROJECT-KEY"
containerId: "ari:cloud:townsquare::site/{siteId}"
) {
id name key url state { label value } owner { name }
}
}A couple of gotchas:
operationName or you'll get a warningupdates require adding @optIn(to: "Townsquare") to your querydescription and summary fields return Atlassian Document Format (ADF) JSON, not plain textThe siteId is the UUID visible in your home.atlassian.com URL: .../s/{siteId}/project/...
Docs & Announcement:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Amazing. Thank you for forwarding this! I hope they'll add it to the MCP as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.