@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.
Files changed (2) hide show
  1. package/README.md +20 -20
  2. 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": ["-y", "@zierocode/mcp-atlassian-cloud"],
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 (Remote Server)
103
+ ### Option 3: HTTP (Self-Hosted)
107
104
 
108
- For shared team environments or when you prefer a hosted solution.
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
- **Claude Code**:
115
-
116
- ```bash
117
- claude mcp add --transport http \
118
- --header "X-Api-Key: YOUR_API_KEY" \
119
- Jira \
120
- https://atlassian-mcp-793556042663.asia-southeast1.run.app/mcp
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zierocode/mcp-atlassian-cloud",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "MCP server for Atlassian Cloud (Jira) - 72 tools for issues, sprints, epics, boards, and more",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",