@ecubelabs/atlassian-mcp 1.6.0-next.1 → 1.6.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,22 +9,31 @@
|
|
|
9
9
|
"atlassian-jira": {
|
|
10
10
|
"type": "stdio",
|
|
11
11
|
"command": "node",
|
|
12
|
-
"args": ["./packages/atlassian-mcp/dist/index.js"]
|
|
13
|
-
"env": {
|
|
14
|
-
"JIRA_HOST": "${JIRA_HOST}",
|
|
15
|
-
"JIRA_EMAIL": "${JIRA_EMAIL}",
|
|
16
|
-
"JIRA_API_TOKEN": "${JIRA_API_TOKEN}",
|
|
17
|
-
"JIRA_API_VERSION": "${JIRA_API_VERSION}"
|
|
18
|
-
}
|
|
12
|
+
"args": ["./packages/atlassian-mcp/dist/index.js"]
|
|
19
13
|
}
|
|
20
14
|
}
|
|
21
15
|
}
|
|
22
16
|
```
|
|
23
17
|
|
|
24
|
-
### 2.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
18
|
+
### 2. `.env` 파일 생성
|
|
19
|
+
|
|
20
|
+
`claude` 를 실행할 위치에서 `.env` 파일을 생성하고 아래와 같이 내용을 채워넣는다:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
# Jira Configuration
|
|
24
|
+
JIRA_HOST=https://your-domain.atlassian.net
|
|
25
|
+
JIRA_EMAIL=your-email@your-domain.com
|
|
26
|
+
JIRA_API_TOKEN=your-api-token
|
|
27
|
+
JIRA_API_VERSION=3
|
|
28
|
+
# Confluence Configuration
|
|
29
|
+
CONFLUENCE_HOST=https://your-domain.atlassian.net
|
|
30
|
+
CONFLUENCE_EMAIL=your-email@your-domain.com
|
|
31
|
+
CONFLUENCE_API_TOKEN=your-api-token
|
|
32
|
+
CONFLUENCE_API_VERSION=3
|
|
28
33
|
```
|
|
29
34
|
|
|
30
35
|
API Token은 https://id.atlassian.com/manage-profile/security/api-tokens 에서 개인별로 발급이 가능하다.
|
|
36
|
+
|
|
37
|
+
### 3. agent 실행
|
|
38
|
+
|
|
39
|
+
claude 를 실행하면 자동으로 atlassian-mcp 가 로드된다.
|