mcp-jira-cloud 2.0.2 → 2.0.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 +88 -12
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2942
- package/package.json +5 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -153,11 +153,20 @@ npx mcp-jira-cloud
|
|
|
153
153
|
|
|
154
154
|
### Configure Your AI Assistant
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
There are two ways to run the MCP server:
|
|
157
|
+
|
|
158
|
+
| Method | Command | Best For |
|
|
159
|
+
|--------|---------|----------|
|
|
160
|
+
| **npx** (no install) | `npx mcp-jira-cloud` | Quick setup, always latest version |
|
|
161
|
+
| **Global install** | `jira-mcp` | Faster startup, offline usage |
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
#### 📘 VS Code (GitHub Copilot)
|
|
158
166
|
|
|
159
167
|
Create or edit `.vscode/mcp.json` in your workspace:
|
|
160
168
|
|
|
169
|
+
**Using npx (recommended):**
|
|
161
170
|
```json
|
|
162
171
|
{
|
|
163
172
|
"servers": {
|
|
@@ -175,13 +184,31 @@ Create or edit `.vscode/mcp.json` in your workspace:
|
|
|
175
184
|
}
|
|
176
185
|
```
|
|
177
186
|
|
|
178
|
-
|
|
187
|
+
**After global install (`npm i -g mcp-jira-cloud`):**
|
|
188
|
+
```json
|
|
189
|
+
{
|
|
190
|
+
"servers": {
|
|
191
|
+
"jira": {
|
|
192
|
+
"type": "stdio",
|
|
193
|
+
"command": "jira-mcp",
|
|
194
|
+
"args": [],
|
|
195
|
+
"env": {
|
|
196
|
+
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
|
|
197
|
+
"JIRA_EMAIL": "your-email@example.com",
|
|
198
|
+
"JIRA_API_TOKEN": "your-api-token"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
```
|
|
179
204
|
|
|
180
|
-
|
|
181
|
-
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
#### 🤖 Claude Desktop
|
|
182
208
|
|
|
183
209
|
Add to your Claude configuration (`claude_desktop_config.json`):
|
|
184
210
|
|
|
211
|
+
**Using npx (recommended):**
|
|
185
212
|
```json
|
|
186
213
|
{
|
|
187
214
|
"mcpServers": {
|
|
@@ -198,13 +225,30 @@ Add to your Claude configuration (`claude_desktop_config.json`):
|
|
|
198
225
|
}
|
|
199
226
|
```
|
|
200
227
|
|
|
201
|
-
|
|
228
|
+
**After global install (`npm i -g mcp-jira-cloud`):**
|
|
229
|
+
```json
|
|
230
|
+
{
|
|
231
|
+
"mcpServers": {
|
|
232
|
+
"jira": {
|
|
233
|
+
"command": "jira-mcp",
|
|
234
|
+
"args": [],
|
|
235
|
+
"env": {
|
|
236
|
+
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
|
|
237
|
+
"JIRA_EMAIL": "your-email@example.com",
|
|
238
|
+
"JIRA_API_TOKEN": "your-api-token"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
```
|
|
202
244
|
|
|
203
|
-
|
|
204
|
-
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
#### ⚡ Cursor
|
|
205
248
|
|
|
206
249
|
Create `.cursor/mcp.json` in your project or home directory:
|
|
207
250
|
|
|
251
|
+
**Using npx (recommended):**
|
|
208
252
|
```json
|
|
209
253
|
{
|
|
210
254
|
"mcpServers": {
|
|
@@ -221,13 +265,30 @@ Create `.cursor/mcp.json` in your project or home directory:
|
|
|
221
265
|
}
|
|
222
266
|
```
|
|
223
267
|
|
|
224
|
-
|
|
268
|
+
**After global install (`npm i -g mcp-jira-cloud`):**
|
|
269
|
+
```json
|
|
270
|
+
{
|
|
271
|
+
"mcpServers": {
|
|
272
|
+
"jira": {
|
|
273
|
+
"command": "jira-mcp",
|
|
274
|
+
"args": [],
|
|
275
|
+
"env": {
|
|
276
|
+
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
|
|
277
|
+
"JIRA_EMAIL": "your-email@example.com",
|
|
278
|
+
"JIRA_API_TOKEN": "your-api-token"
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
```
|
|
225
284
|
|
|
226
|
-
|
|
227
|
-
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
#### 🔧 Windsurf
|
|
228
288
|
|
|
229
289
|
Add to your Windsurf MCP configuration:
|
|
230
290
|
|
|
291
|
+
**Using npx (recommended):**
|
|
231
292
|
```json
|
|
232
293
|
{
|
|
233
294
|
"mcpServers": {
|
|
@@ -244,7 +305,22 @@ Add to your Windsurf MCP configuration:
|
|
|
244
305
|
}
|
|
245
306
|
```
|
|
246
307
|
|
|
247
|
-
|
|
308
|
+
**After global install (`npm i -g mcp-jira-cloud`):**
|
|
309
|
+
```json
|
|
310
|
+
{
|
|
311
|
+
"mcpServers": {
|
|
312
|
+
"jira": {
|
|
313
|
+
"command": "jira-mcp",
|
|
314
|
+
"args": [],
|
|
315
|
+
"env": {
|
|
316
|
+
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
|
|
317
|
+
"JIRA_EMAIL": "your-email@example.com",
|
|
318
|
+
"JIRA_API_TOKEN": "your-api-token"
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
```
|
|
248
324
|
|
|
249
325
|
## ⚙️ Configuration
|
|
250
326
|
|
package/dist/index.d.ts
CHANGED