...
Access to Jira
Access to Confluence
Personal access tokens for Jira and Confluence
An MCP-compatible AI client (Claude Desktop/ Claude Code)
- Node.js (LTS version recommended) https://nodejs.org/en/download
...
Generate Your Personal Access Tokens
...
Add the following MCP configuration to your AI clientClient if you are using Claude code.
{
"mcpServers": {
"mcp-atlassian": {
"type": "http",
"url": "https://amrittools.piramalswasthya.org/atlassian/mcp",
"headers": {
"X-Atlassian-Jira-Url": "https://support.piramalfoundation.org/jira",
"X-Atlassian-Jira-Personal-Token": "<YOUR_JIRA_TOKEN>",
"X-Atlassian-Confluence-Url": "https://pmp.piramalswasthya.org/confluence",
"X-Atlassian-Confluence-Personal-Token": "<YOUR_CONFLUENCE_TOKEN>"
}
}
}
}
Replace:
<YOUR_JIRA_TOKEN><YOUR_CONFLUENCE_TOKEN>
Claude Desktop MCP Configuration
If you are using Claude Desktop use this configuration.
Open the Claude Desktop configuration file and add the following content inside the file.
{
"mcpServers": {
"mcp-atlassian": {
"command": "npx.cmd",
"args": [
"-y",
"mcp-remote",
"https://amrittools.piramalswasthya.org/atlassian/mcp",
"--header",
"X-Atlassian-Jira-Url: https://support.piramalfoundation.org/jira",
"--header",
"X-Atlassian-Jira-Personal-Token: <YOUR_JIRA_TOKEN>",
"--header",
"X-Atlassian-Confluence-Url: https://pmp.piramalswasthya.org/confluence",
"--header",
"X-Atlassian-Confluence-Personal-Token: <YOUR_CONFLUENCE_TOKEN>"
]
}
}
}
Replace:<YOUR_JIRA_TOKEN><YOUR_CONFLUENCE_TOKEN>
with your own with your own credentials(which you just created from Jira and Confluence).
After updating the configuration, completely close(this is very important,close from task managersVerify that Claude Desktop is no longer running in Task Manager) and reopen Claude Desktop for the changes to take effect.
...