-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskra.code-workspace
More file actions
42 lines (42 loc) · 828 Bytes
/
taskra.code-workspace
File metadata and controls
42 lines (42 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"folders": [
{
"path": "."
}
],
"settings": {
"mcp": {
"servers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/atlassian",
"--jira-url=https://viloforge.atlassian.net",
"--jira-username=viloforge@outlook.com",
"--jira-token=${input:jira_token}",
"--confluence-url=https://viloforge.atlassian.net",
"--confluence-username=viloforge@outlook.com",
"--confluence-token=${input:confluence_token}"
]
}
},
"inputs": [
{
"id": "jira_token",
"type": "promptString",
"description": "Jira API Token",
"password": true
},
{
"id": "confluence_token",
"type": "promptString",
"description": "Confluence API Token",
"password": true
}
]
}
}
}