OAuth 2.1 is the recommended authentication method for interactive, user-driven scenarios with the Atlassian Rovo MCP Server.
When you use OAuth authentication with MCP:
Authorization header.Configure your MCP client to call the MCP server with an OAuth 2.1 bearer token:
1 2{ "mcpServers": { "atlassian-rovo-mcp": { "url": "https://mcp.atlassian.com/v1/mcp", "headers": { "Authorization": "Bearer YOUR_OAUTH_ACCESS_TOKEN" } } } }
Replace YOUR_OAUTH_ACCESS_TOKEN with a valid OAuth 2.1 access token obtained from the OAuth flow. The exact way you obtain this token depends on your app or integration - for example, using the OAuth 2.1 authorization code grant.
cloudId associated with the token, so tokens are only used for the sites they were granted for.For scenarios where you cannot use an interactive OAuth flow (for example, backend services or CI/CD pipelines), use authentication via API token instead.
Rate this page: