Cant get mcp-atlassian to work with Cline #427
Unanswered
robert3142
asked this question in
Q&A
Replies: 1 comment
-
I created and use a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to set up mcp-atlassian in Cline, but it fails to deliver results. My config seems to be okay at first (the server shows up in Cline and the tools are listed correctly). But when Cline tries to access it I simply get
Error:
Error executing tool get_issue: Jira client is not configured or available.
Also in my Atlassian Account i can see that it does not even access its token?
Additional Info: I am running mcp-atlassian as a docker container in a WSL2 environment with the -network host option.
[edit] Sorry, forgot to post my config:
"mcp-atlassian": {
"disabled": false,
"timeout": 60,
"command": "wsl.exe",
"args": [
"docker",
"run",
"--network",
"host",
"-i",
"--rm",
"-e",
"HTTP_PROXY",
"-e",
"HTTPS_PROXY",
"-e",
"NO_PROXY",
"-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": {
"HTTP_PROXY": "http://127.0.0.1:3128",
"HTTPS_PROXY": "http://127.0.0.1:3128",
"NO_PROXY": "localhost",
"CONFLUENCE_URL": "https://mycompany.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "mycompanymail",
"CONFLUENCE_API_TOKEN": "mytoken",
"JIRA_URL": "https://mycompany.atlassian.net",
"JIRA_USERNAME": "mycompanymail",
"JIRA_API_TOKEN": "mytoken"
},
"transportType": "stdio"
}
Beta Was this translation helpful? Give feedback.
All reactions