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]"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment