Authentication
MCP Atlassian supports three authentication methods depending on your Atlassian deployment type.
API Token (Cloud) - Recommended¶
The simplest method for Atlassian Cloud users.
Environment variables:
JIRA_URL=https://your-company.atlassian.net
JIRA_USERNAME=your.email@company.com
JIRA_API_TOKEN=your_api_token
CONFLUENCE_URL=https://your-company.atlassian.net/wiki
CONFLUENCE_USERNAME=your.email@company.com
CONFLUENCE_API_TOKEN=your_api_token
Personal Access Token (Server/Data Center)¶
For Server or Data Center deployments.
Environment variables:
JIRA_URL=https://jira.your-company.com
JIRA_PERSONAL_TOKEN=your_personal_access_token
CONFLUENCE_URL=https://confluence.your-company.com
CONFLUENCE_PERSONAL_TOKEN=your_personal_access_token
Note
Enterprise CA certificates in the OS trust store (Windows Certificate Store, macOS Keychain, Linux system CAs) are trusted automatically.
For self-signed certificates not in the OS trust store, set JIRA_SSL_VERIFY=false and/or CONFLUENCE_SSL_VERIFY=false.
OAuth 2.0 (Cloud) - Advanced¶
OAuth 2.0 provides enhanced security features but requires more setup. For most users, API Token authentication is simpler and sufficient.
Setup Steps¶
http://localhost:8080/callback
Environment variables (after setup):
JIRA_URL=https://your-company.atlassian.net
CONFLUENCE_URL=https://your-company.atlassian.net/wiki
ATLASSIAN_OAUTH_CLOUD_ID=your_cloud_id_from_wizard
ATLASSIAN_OAUTH_CLIENT_ID=your_oauth_client_id
ATLASSIAN_OAUTH_CLIENT_SECRET=your_oauth_client_secret
ATLASSIAN_OAUTH_REDIRECT_URI=http://localhost:8080/callback
ATLASSIAN_OAUTH_SCOPE=read:jira-work write:jira-work read:confluence-content.all write:confluence-content offline_access
Warning
Include offline_access in your scope to allow automatic token refresh.
MCP OAuth Proxy (DCR + Discovery)¶
Enable this when running a remote MCP endpoint that should onboard MCP clients
through the standard OAuth discovery/DCR flow (401 challenge, /.well-known/*,
/register, /authorize, /token, callback).
ATLASSIAN_OAUTH_PROXY_ENABLE=true
PUBLIC_BASE_URL=https://mcp.example.com/mcp-atlassian
ATLASSIAN_OAUTH_ALLOWED_CLIENT_REDIRECT_URIS=http://localhost:*,http://127.0.0.1:*,https://chatgpt.com/connector_platform_oauth_redirect
ATLASSIAN_OAUTH_ALLOWED_GRANT_TYPES=authorization_code,refresh_token
ATLASSIAN_OAUTH_REQUIRE_CONSENT=true
Note
This mode is opt-in. Existing API token, PAT, and header-based OAuth flows continue to work without enabling the proxy.
Bring Your Own Token (BYOT)¶
If you manage OAuth tokens externally (e.g., through a central identity provider):
Warning
Token refresh is your responsibility - the server does not handle it for BYOT.
Multi-Cloud OAuth¶
For multi-tenant applications where users provide their own OAuth tokens:
-
Enable minimal OAuth mode:
-
Users provide authentication via HTTP headers:
Authorization: Bearer <user_oauth_token>X-Atlassian-Cloud-Id: <user_cloud_id>
See HTTP Transport for more details on multi-user authentication.