Hi,
My Atlassian admin and I are having trouble getting our workflow to work with the Atlassian Rovo MCP using API Token authentication. We’re trying to automate Jira ticket creation through our CI/CD pipeline.
We’ve configured everything according to the documentation:
(https://support.atlassian.com/security-and-access-policies/docs/manage-atlassian-mp3 juice-rovo-mcp-server/)
However, when connecting, Claude only has access to read-only tools. I’m getting the following issue:
Unfortunately, I’m unable to create a Jira ticket. The Atlassian MCP tools available (
getTeamworkGraphContextandgetTeamworkGraphObject) are read-only — they can fetch and display existing Jira data but cannot create new issues. Attempts to access the Atlassian API return a 401 Unauthorized error, suggesting the MCP integration may not have write permissions configured.
We’ve tried:
Nothing seems to enable access to any write tools or permissions. We’re currently stuck.
This is our current MCP configuration:
{
"mcpServers": {
"atlassian": {
"type": "http",
"url": "https://mcp.atlassian.com/v1/mcp",
"headers": {
"Authorization": "Bearer ${{ secrets.ATLASSIAN_MCP_API_TOKEN }}"
}
}
}
}
Any advice or suggestions on how to properly configure write access for Claude with MCP would be greatly appreciated.
Hello @Warren Januel
The issue is the auth format.
Your config uses Authorization: Bearer ..., but that only works for a service account API key. If you are using a normal personal Atlassian API token, the MCP server expects Basic auth instead.
That would also explain the 401 and why you only see a limited set of tools.
So check which credential you are using: a personal API token needs Basic auth, while Bearer is for a service account API key.
Also make sure API token authentication is enabled for the Rovo MCP server on the Atlassian side.
Hello Warren :-)
Short question: Are you using Claude Code to create Rovo agents with Forge?
Regards,
Jordi
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.