@ecubelabs/atlassian-mcp 1.0.0-next.3 → 1.0.0-next.4
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 +30 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
## Local Test
|
|
3
|
+
|
|
4
|
+
### 1. mcp 설정 생성
|
|
5
|
+
프로젝트 루트에 .mcp.local.json 을 생성하고 아래와 같이 내용을 채워넣는다:
|
|
6
|
+
```json
|
|
7
|
+
{
|
|
8
|
+
"mcpServers": {
|
|
9
|
+
"atlassian-jira": {
|
|
10
|
+
"type": "stdio",
|
|
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
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
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
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
API Token은 https://id.atlassian.com/manage-profile/security/api-tokens 에서 개인별로 발급이 가능하다.
|
package/dist/index.js
CHANGED