I have installed the Atlassian MCP server from VS Code extensions and add below configurations in mcp.json file:
Welcome to the Community!
The MCP server currently authenticates org-level permissions via OAuth, not Basic auth with API tokens, even if you've granted every available scope on the token.
The root cause is that API tokens generated at id.atlassian.com work fine for Jira REST calls but the Rovo MCP server's Bitbucket integration requires an OAuth 2.0 flow to verify workspace membership and permissions. That's exactly why Jira connects fine for you via OAuth but Bitbucket doesn't via Basic auth.
The fix is to switch from Basic auth to OAuth2 in your mcp.json. Remove the Authorization header entirely and instead follow the OAuth2 setup in the Atlassian MCP docs — you'll get a browser prompt the first time to grant workspace access, after which the token is cached. Once connected via OAuth, GitHub Copilot should be able to query Bitbucket PRs without issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.