@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.
Files changed (2) hide show
  1. package/README.md +20 -11
  2. 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
- 아래와 같이 env 를 넣어 실행한다:
26
- ```bash
27
- JIRA_HOST=https://ecubelabs.atlassian.net JIRA_EMAIL=your-name@ecubelabs.com JIRA_API_TOKEN=ATATT3xFfGF0...=ADBC6D77 JIRA_API_VERSION=3 claude
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 가 로드된다.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecubelabs/atlassian-mcp",
3
- "version": "1.6.0-next.1",
3
+ "version": "1.6.0-next.2",
4
4
  "bin": "./dist/index.js",
5
5
  "repository": {
6
6
  "url": "https://github.com/Ecube-Labs/skynet.git"