...
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>
with your own credentials(which you just created from Jira and Confluence).
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 credentials(which you just created from Jira and Confluence).
After updating the configuration, completely close(Verify that Claude Desktop is no longer running in Task ManagerAfter updating the configuration, completely close(this is very important,close from task managers) and reopen Claude Desktop for the changes to take effect.
...