mcp-jira-cloud 4.1.0 → 4.2.0

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 (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +259 -21
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [4.2.0](https://github.com/tezaswi7222/jira-mcp/compare/v4.1.0...v4.2.0) (2026-02-20)
2
+
3
+ ### ✨ Features
4
+
5
+ * add Bun runtime support for easier installation ([14de1b5](https://github.com/tezaswi7222/jira-mcp/commit/14de1b5da871cdd58e6392d683add662ca90bb75))
6
+
1
7
  ## [4.1.0](https://github.com/tezaswi7222/jira-mcp/compare/v4.0.0...v4.1.0) (2026-02-17)
2
8
 
3
9
  ### ✨ Features
package/README.md CHANGED
@@ -27,6 +27,9 @@
27
27
  <a href="https://modelcontextprotocol.io/">
28
28
  <img src="https://img.shields.io/badge/MCP-Compatible-8A2BE2?style=flat-square" alt="MCP Compatible">
29
29
  </a>
30
+ <a href="https://bun.sh/">
31
+ <img src="https://img.shields.io/badge/Bun-1.0%2B-fbf0df?style=flat-square&logo=bun&logoColor=black" alt="Bun 1.0+">
32
+ </a>
30
33
  <a href="https://nodejs.org/">
31
34
  <img src="https://img.shields.io/badge/Node.js-18%2B-339933?style=flat-square&logo=node.js&logoColor=white" alt="Node.js 18+">
32
35
  </a>
@@ -150,20 +153,95 @@ A **Model Context Protocol (MCP)** server that enables AI assistants like **GitH
150
153
  <strong>74 Tools</strong> for comprehensive Jira management
151
154
  </p>
152
155
 
156
+ ## 📋 Prerequisites
157
+
158
+ ### Runtime Environment (choose ONE)
159
+
160
+ <table>
161
+ <tr>
162
+ <th width="50%">🥟 Bun (Easier for beginners)</th>
163
+ <th width="50%">📦 Node.js (Traditional)</th>
164
+ </tr>
165
+ <tr>
166
+ <td>
167
+
168
+ **Simpler installation, faster execution**
169
+
170
+ **Install Bun (one command):**
171
+
172
+ Windows (PowerShell as Admin):
173
+ ```powershell
174
+ irm bun.sh/install.ps1 | iex
175
+ ```
176
+
177
+ macOS / Linux:
178
+ ```bash
179
+ curl -fsSL https://bun.sh/install | bash
180
+ ```
181
+
182
+ </td>
183
+ <td>
184
+
185
+ **More widely used, larger ecosystem**
186
+
187
+ **Requirements:**
188
+ - Node.js ≥18.0.0 ([Download](https://nodejs.org/))
189
+ - npm ≥8.0.0 (included with Node.js)
190
+
191
+ </td>
192
+ </tr>
193
+ </table>
194
+
195
+ ### Jira Requirements
196
+
197
+ | Requirement | Notes |
198
+ |-------------|-------|
199
+ | **Jira Cloud** | Jira Server/Data Center not supported |
200
+ | **Atlassian Account** | With access to your Jira instance |
201
+ | **API Token** | [Generate here](https://id.atlassian.com/manage-profile/security/api-tokens) |
202
+
203
+ ### MCP-Compatible Client (one of)
204
+ - **VS Code** with GitHub Copilot extension
205
+ - **Claude Desktop** app
206
+ - **Cursor** IDE
207
+ - **Windsurf** IDE
208
+ - Any other MCP-compatible AI assistant
209
+
153
210
  ## 🚀 Quick Start
154
211
 
155
212
  ### Installation
156
213
 
214
+ <table>
215
+ <tr>
216
+ <th width="50%">🥟 Using Bun (Recommended)</th>
217
+ <th width="50%">📦 Using npm</th>
218
+ </tr>
219
+ <tr>
220
+ <td>
221
+
157
222
  ```bash
158
- npm install -g mcp-jira-cloud
223
+ # Run directly (no install needed)
224
+ bunx mcp-jira-cloud@latest
225
+
226
+ # Or install globally
227
+ bun install -g mcp-jira-cloud
159
228
  ```
160
229
 
161
- Or use directly with `npx` (always gets latest version):
230
+ </td>
231
+ <td>
162
232
 
163
233
  ```bash
234
+ # Run directly (no install needed)
164
235
  npx -y mcp-jira-cloud@latest
236
+
237
+ # Or install globally
238
+ npm install -g mcp-jira-cloud
165
239
  ```
166
240
 
241
+ </td>
242
+ </tr>
243
+ </table>
244
+
167
245
  ### Get Your API Token
168
246
 
169
247
  1. Go to [Atlassian API Tokens](https://id.atlassian.com/manage-profile/security/api-tokens)
@@ -172,12 +250,14 @@ npx -y mcp-jira-cloud@latest
172
250
 
173
251
  ### Configure Your AI Assistant
174
252
 
175
- There are two ways to run the MCP server:
253
+ Choose the command based on your runtime:
176
254
 
177
- | Method | Command | Best For |
178
- |--------|---------|----------|
179
- | **npx** (no install) | `npx -y mcp-jira-cloud@latest` | Quick setup, always latest version |
180
- | **Global install** | `jira-mcp` | Faster startup, offline usage |
255
+ | Runtime | Method | Command |
256
+ |---------|--------|---------|
257
+ | **Bun** | Run directly | `bunx mcp-jira-cloud@latest` |
258
+ | **Bun** | Global install | `bun install -g mcp-jira-cloud` `jira-mcp` |
259
+ | **npm** | Run directly | `npx -y mcp-jira-cloud@latest` |
260
+ | **npm** | Global install | `npm i -g mcp-jira-cloud` → `jira-mcp` |
181
261
 
182
262
  ---
183
263
 
@@ -185,7 +265,31 @@ There are two ways to run the MCP server:
185
265
 
186
266
  Create or edit `.vscode/mcp.json` in your workspace:
187
267
 
188
- **Using npx (recommended):**
268
+ <details>
269
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
270
+
271
+ ```json
272
+ {
273
+ "servers": {
274
+ "jira": {
275
+ "type": "stdio",
276
+ "command": "bunx",
277
+ "args": ["mcp-jira-cloud@latest"],
278
+ "env": {
279
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
280
+ "JIRA_EMAIL": "your-email@example.com",
281
+ "JIRA_API_TOKEN": "your-api-token"
282
+ }
283
+ }
284
+ }
285
+ }
286
+ ```
287
+
288
+ </details>
289
+
290
+ <details>
291
+ <summary><strong>📦 Using npx</strong></summary>
292
+
189
293
  ```json
190
294
  {
191
295
  "servers": {
@@ -203,7 +307,11 @@ Create or edit `.vscode/mcp.json` in your workspace:
203
307
  }
204
308
  ```
205
309
 
206
- **After global install (`npm i -g mcp-jira-cloud`):**
310
+ </details>
311
+
312
+ <details>
313
+ <summary><strong>⚡ After global install</strong></summary>
314
+
207
315
  ```json
208
316
  {
209
317
  "servers": {
@@ -221,19 +329,23 @@ Create or edit `.vscode/mcp.json` in your workspace:
221
329
  }
222
330
  ```
223
331
 
332
+ </details>
333
+
224
334
  ---
225
335
 
226
336
  #### 🤖 Claude Desktop
227
337
 
228
338
  Add to your Claude configuration (`claude_desktop_config.json`):
229
339
 
230
- **Using npx (recommended):**
340
+ <details>
341
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
342
+
231
343
  ```json
232
344
  {
233
345
  "mcpServers": {
234
346
  "jira": {
235
- "command": "npx",
236
- "args": ["-y", "mcp-jira-cloud@latest"],
347
+ "command": "bunx",
348
+ "args": ["mcp-jira-cloud@latest"],
237
349
  "env": {
238
350
  "JIRA_BASE_URL": "https://your-domain.atlassian.net",
239
351
  "JIRA_EMAIL": "your-email@example.com",
@@ -244,13 +356,17 @@ Add to your Claude configuration (`claude_desktop_config.json`):
244
356
  }
245
357
  ```
246
358
 
247
- **After global install (`npm i -g mcp-jira-cloud`):**
359
+ </details>
360
+
361
+ <details>
362
+ <summary><strong>📦 Using npx</strong></summary>
363
+
248
364
  ```json
249
365
  {
250
366
  "mcpServers": {
251
367
  "jira": {
252
- "command": "jira-mcp",
253
- "args": [],
368
+ "command": "npx",
369
+ "args": ["-y", "mcp-jira-cloud@latest"],
254
370
  "env": {
255
371
  "JIRA_BASE_URL": "https://your-domain.atlassian.net",
256
372
  "JIRA_EMAIL": "your-email@example.com",
@@ -261,13 +377,38 @@ Add to your Claude configuration (`claude_desktop_config.json`):
261
377
  }
262
378
  ```
263
379
 
380
+ </details>
381
+
264
382
  ---
265
383
 
266
384
  #### ⚡ Cursor
267
385
 
268
386
  Create `.cursor/mcp.json` in your project or home directory:
269
387
 
270
- **Using npx (recommended):**
388
+ <details>
389
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
390
+
391
+ ```json
392
+ {
393
+ "mcpServers": {
394
+ "jira": {
395
+ "command": "bunx",
396
+ "args": ["mcp-jira-cloud@latest"],
397
+ "env": {
398
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
399
+ "JIRA_EMAIL": "your-email@example.com",
400
+ "JIRA_API_TOKEN": "your-api-token"
401
+ }
402
+ }
403
+ }
404
+ }
405
+ ```
406
+
407
+ </details>
408
+
409
+ <details>
410
+ <summary><strong>📦 Using npx</strong></summary>
411
+
271
412
  ```json
272
413
  {
273
414
  "mcpServers": {
@@ -284,7 +425,11 @@ Create `.cursor/mcp.json` in your project or home directory:
284
425
  }
285
426
  ```
286
427
 
287
- **After global install (`npm i -g mcp-jira-cloud`):**
428
+ </details>
429
+
430
+ <details>
431
+ <summary><strong>⚡ After global install</strong></summary>
432
+
288
433
  ```json
289
434
  {
290
435
  "mcpServers": {
@@ -301,13 +446,38 @@ Create `.cursor/mcp.json` in your project or home directory:
301
446
  }
302
447
  ```
303
448
 
449
+ </details>
450
+
304
451
  ---
305
452
 
306
453
  #### 🔧 Windsurf
307
454
 
308
455
  Add to your Windsurf MCP configuration:
309
456
 
310
- **Using npx (recommended):**
457
+ <details>
458
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
459
+
460
+ ```json
461
+ {
462
+ "mcpServers": {
463
+ "jira": {
464
+ "command": "bunx",
465
+ "args": ["mcp-jira-cloud@latest"],
466
+ "env": {
467
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
468
+ "JIRA_EMAIL": "your-email@example.com",
469
+ "JIRA_API_TOKEN": "your-api-token"
470
+ }
471
+ }
472
+ }
473
+ }
474
+ ```
475
+
476
+ </details>
477
+
478
+ <details>
479
+ <summary><strong>📦 Using npx</strong></summary>
480
+
311
481
  ```json
312
482
  {
313
483
  "mcpServers": {
@@ -324,7 +494,11 @@ Add to your Windsurf MCP configuration:
324
494
  }
325
495
  ```
326
496
 
327
- **After global install (`npm i -g mcp-jira-cloud`):**
497
+ </details>
498
+
499
+ <details>
500
+ <summary><strong>⚡ After global install</strong></summary>
501
+
328
502
  ```json
329
503
  {
330
504
  "mcpServers": {
@@ -341,6 +515,8 @@ Add to your Windsurf MCP configuration:
341
515
  }
342
516
  ```
343
517
 
518
+ </details>
519
+
344
520
  ## ⚙️ Configuration
345
521
 
346
522
  ### Environment Variables
@@ -664,6 +840,29 @@ Once configured, interact with Jira through natural conversation:
664
840
 
665
841
  ## 🔧 Troubleshooting
666
842
 
843
+ <details>
844
+ <summary><strong>🥟 Bun Installation Issues</strong></summary>
845
+
846
+ **Windows (PowerShell as Administrator):**
847
+ ```powershell
848
+ # If irm fails, try:
849
+ Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
850
+ irm bun.sh/install.ps1 | iex
851
+ ```
852
+
853
+ **macOS/Linux:**
854
+ ```bash
855
+ # If curl fails, check your internet connection or try:
856
+ brew install oven-sh/bun/bun # macOS with Homebrew
857
+ ```
858
+
859
+ **Verify Installation:**
860
+ ```bash
861
+ bun --version # Should show 1.x.x
862
+ ```
863
+
864
+ </details>
865
+
667
866
  <details>
668
867
  <summary><strong>❌ "MISSING_AUTH" Error</strong></summary>
669
868
 
@@ -715,6 +914,27 @@ The issue or project doesn't exist, or you don't have access to view it.
715
914
 
716
915
  </details>
717
916
 
917
+ <details>
918
+ <summary><strong>❌ npx/bunx Using Old Version</strong></summary>
919
+
920
+ Clear the cache to ensure you get the latest version:
921
+
922
+ **npm:**
923
+ ```bash
924
+ npx -y --package=mcp-jira-cloud@latest mcp-jira-cloud
925
+ # or clear cache:
926
+ npm cache clean --force
927
+ ```
928
+
929
+ **Bun:**
930
+ ```bash
931
+ bunx --bun mcp-jira-cloud@latest
932
+ # or clear cache:
933
+ bun pm cache rm
934
+ ```
935
+
936
+ </details>
937
+
718
938
  ## 📦 Package Information
719
939
 
720
940
  | Attribute | Value |
@@ -722,7 +942,7 @@ The issue or project doesn't exist, or you don't have access to view it.
722
942
  | Package name | [`mcp-jira-cloud`](https://www.npmjs.com/package/mcp-jira-cloud) |
723
943
  | Latest Version | ![npm version](https://img.shields.io/npm/v/mcp-jira-cloud?style=flat-square) |
724
944
  | License | [MIT](LICENSE) |
725
- | Node.js | ≥18.0.0 |
945
+ | Runtime | Bun ≥1.0.0 or Node.js ≥18.0.0 |
726
946
  | TypeScript | ≥5.0.0 |
727
947
  | Module | ES Modules |
728
948
  | Tools | **74** |
@@ -738,7 +958,25 @@ The issue or project doesn't exist, or you don't have access to view it.
738
958
 
739
959
  ## 🆕 What's New
740
960
 
741
- ### 🚀 v4.0.0 (Latest)
961
+ ### 🥟 v4.2.0 (Latest)
962
+
963
+ | Feature | Description |
964
+ |---------|-------------|
965
+ | 🥟 **Bun Support** | Run with `bunx mcp-jira-cloud@latest` - easier for beginners |
966
+ | 📖 **Better Docs** | Simplified prerequisites and configuration examples |
967
+
968
+ ---
969
+
970
+ ### 🔍 v4.1.0
971
+
972
+ | Feature | Description |
973
+ |---------|-------------|
974
+ | 🎯 **Improved Tool Descriptions** | Better trigger phrases, negative guidance, and cross-references for AI agents |
975
+ | 📋 **Prerequisites Section** | Clear requirements documented in README |
976
+
977
+ ---
978
+
979
+ ### 🚀 v4.0.0
742
980
 
743
981
  | Change | Description |
744
982
  |--------|-------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-jira-cloud",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "A Model Context Protocol (MCP) server for Jira Cloud integration. Enables AI assistants like GitHub Copilot and Claude to search issues, manage tickets, log work, handle sprints, and interact with your Jira instance seamlessly. Features 74 tools for comprehensive Jira management.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",