Service Account tokens #1336
|
It seems it does not support Service Account tokens. I only got the MCP working if my Personal Token. |
Replies: 1 comment
|
If Atlassian issued the service-account credential as a Cloud API token, it can use the existing Basic Auth path. Configure the service account identity as the username and the token as the API token: JIRA_URL=https://your-site.atlassian.net
JIRA_USERNAME=service-account-email
JIRA_API_TOKEN=service-account-tokenUse the matching
|
If Atlassian issued the service-account credential as a Cloud API token, it can use the existing Basic Auth path. Configure the service account identity as the username and the token as the API token:
Use the matching
CONFLUENCE_*variables for Confluence. The Cloud configuration requires both values, and the client passes them as username and password to the Jira or Confluence library.JIRA_PERSONAL_TOKENandCONFLUENCE_PERSONAL_TOKENare the Server/Data Center PAT path. If your service-account credential is a Bearer-only token rather than an API token accepted by Basic Auth,…