Skip to content

Instantly share code, notes, and snippets.

@kevinquillen
Created June 2, 2025 14:11
Show Gist options
  • Save kevinquillen/774307a7b1cf8586aa2c057e39d5a200 to your computer and use it in GitHub Desktop.
Save kevinquillen/774307a7b1cf8586aa2c057e39d5a200 to your computer and use it in GitHub Desktop.
Adding Atlassian as a MCP to Claude Code.
{
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_USERNAME",
"-e", "CONFLUENCE_API_TOKEN",
"-e", "JIRA_URL",
"-e", "JIRA_USERNAME",
"-e", "JIRA_API_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://[your Atlassian base URL]/wiki",
"CONFLUENCE_USERNAME": "[your email name]@[your email address].com",
"CONFLUENCE_API_TOKEN": "[your API key]",
"JIRA_URL": "https://[your Atlassian base URL]",
"JIRA_USERNAME": "[your email name]@[your email address]",
"JIRA_API_TOKEN": "[your API key]"
}
}
@Acero-AD
Copy link

Hi! Ive been following your article and when configuring I had some issues. The problem is that the command to add the mcp has probably changed and to add a json you have to make it explicit.

claude mcp add-json mcp-atlassian 'JSON'

I put the comment here because there are no comments in the article or in the youtube video.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment