@zierocode/mcp-atlassian-cloud 2.6.1 → 2.6.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 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ npx @zierocode/mcp-atlassian-cloud
|
|
|
40
40
|
"mcpServers": {
|
|
41
41
|
"Jira": {
|
|
42
42
|
"command": "npx",
|
|
43
|
-
"args": ["
|
|
43
|
+
"args": ["@zierocode/mcp-atlassian-cloud@latest"],
|
|
44
44
|
"env": {
|
|
45
45
|
"ATLASSIAN_DOMAIN": "your-domain.atlassian.net",
|
|
46
46
|
"ATLASSIAN_EMAIL": "your-email@example.com",
|
|
@@ -51,18 +51,15 @@ npx @zierocode/mcp-atlassian-cloud
|
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
**Claude Code
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
claude mcp add Jira -- npx -y @zierocode/mcp-atlassian-cloud
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
Then add environment variables to `~/.claude.json`:
|
|
54
|
+
**Claude Code** (`~/.claude.json`):
|
|
61
55
|
|
|
62
56
|
```json
|
|
63
57
|
{
|
|
64
58
|
"mcpServers": {
|
|
65
59
|
"Jira": {
|
|
60
|
+
"type": "stdio",
|
|
61
|
+
"command": "npx",
|
|
62
|
+
"args": ["@zierocode/mcp-atlassian-cloud@latest"],
|
|
66
63
|
"env": {
|
|
67
64
|
"ATLASSIAN_DOMAIN": "your-domain.atlassian.net",
|
|
68
65
|
"ATLASSIAN_EMAIL": "your-email@example.com",
|
|
@@ -103,21 +100,24 @@ docker pull ghcr.io/zierocode/mcp-atlassian-cloud:latest
|
|
|
103
100
|
}
|
|
104
101
|
```
|
|
105
102
|
|
|
106
|
-
### Option 3: HTTP (
|
|
103
|
+
### Option 3: HTTP (Self-Hosted)
|
|
107
104
|
|
|
108
|
-
For shared team environments
|
|
105
|
+
For shared team environments. **Deploy your own server** using the [Deployment Guide](docs/DEPLOYMENT.md).
|
|
109
106
|
|
|
110
|
-
|
|
111
|
-
https://atlassian-mcp-793556042663.asia-southeast1.run.app/mcp
|
|
112
|
-
```
|
|
107
|
+
**Claude Code** (`~/.claude.json`):
|
|
113
108
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
109
|
+
```json
|
|
110
|
+
{
|
|
111
|
+
"mcpServers": {
|
|
112
|
+
"Jira": {
|
|
113
|
+
"type": "http",
|
|
114
|
+
"url": "https://YOUR-SERVER-URL/mcp",
|
|
115
|
+
"headers": {
|
|
116
|
+
"X-Api-Key": "YOUR_API_KEY"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
121
|
```
|
|
122
122
|
|
|
123
123
|
## Getting Your API Token
|
package/package.json
CHANGED