Created
June 2, 2025 14:11
-
-
Save kevinquillen/774307a7b1cf8586aa2c057e39d5a200 to your computer and use it in GitHub Desktop.
Adding Atlassian as a MCP to Claude Code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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