mcp-jira-cloud 4.1.0 → 4.2.1

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 +12 -0
  2. package/README.md +252 -25
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [4.2.1](https://github.com/tezaswi7222/jira-mcp/compare/v4.2.0...v4.2.1) (2026-02-20)
2
+
3
+ ### 🐛 Bug Fixes
4
+
5
+ * Trigger pipeline ([0b45ff3](https://github.com/tezaswi7222/jira-mcp/commit/0b45ff3bc90ab05e26aa8fa68858315b037f85be))
6
+
7
+ ## [4.2.0](https://github.com/tezaswi7222/jira-mcp/compare/v4.1.0...v4.2.0) (2026-02-20)
8
+
9
+ ### ✨ Features
10
+
11
+ * add Bun runtime support for easier installation ([14de1b5](https://github.com/tezaswi7222/jira-mcp/commit/14de1b5da871cdd58e6392d683add662ca90bb75))
12
+
1
13
  ## [4.1.0](https://github.com/tezaswi7222/jira-mcp/compare/v4.0.0...v4.1.0) (2026-02-17)
2
14
 
3
15
  ### ✨ 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,42 +153,132 @@ 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)
170
248
  2. Click **Create API token**
171
249
  3. Copy the token
172
250
 
173
- ### Configure Your AI Assistant
174
-
175
- There are two ways to run the MCP server:
176
-
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 |
181
-
182
251
  ---
183
252
 
184
253
  #### 📘 VS Code (GitHub Copilot)
185
254
 
186
255
  Create or edit `.vscode/mcp.json` in your workspace:
187
256
 
188
- **Using npx (recommended):**
257
+ <details>
258
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
259
+
260
+ ```json
261
+ {
262
+ "servers": {
263
+ "jira": {
264
+ "type": "stdio",
265
+ "command": "bunx",
266
+ "args": ["mcp-jira-cloud@latest"],
267
+ "env": {
268
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
269
+ "JIRA_EMAIL": "your-email@example.com",
270
+ "JIRA_API_TOKEN": "your-api-token"
271
+ }
272
+ }
273
+ }
274
+ }
275
+ ```
276
+
277
+ </details>
278
+
279
+ <details>
280
+ <summary><strong>📦 Using npx</strong></summary>
281
+
189
282
  ```json
190
283
  {
191
284
  "servers": {
@@ -203,7 +296,11 @@ Create or edit `.vscode/mcp.json` in your workspace:
203
296
  }
204
297
  ```
205
298
 
206
- **After global install (`npm i -g mcp-jira-cloud`):**
299
+ </details>
300
+
301
+ <details>
302
+ <summary><strong>⚡ After global install</strong></summary>
303
+
207
304
  ```json
208
305
  {
209
306
  "servers": {
@@ -221,19 +318,23 @@ Create or edit `.vscode/mcp.json` in your workspace:
221
318
  }
222
319
  ```
223
320
 
321
+ </details>
322
+
224
323
  ---
225
324
 
226
325
  #### 🤖 Claude Desktop
227
326
 
228
327
  Add to your Claude configuration (`claude_desktop_config.json`):
229
328
 
230
- **Using npx (recommended):**
329
+ <details>
330
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
331
+
231
332
  ```json
232
333
  {
233
334
  "mcpServers": {
234
335
  "jira": {
235
- "command": "npx",
236
- "args": ["-y", "mcp-jira-cloud@latest"],
336
+ "command": "bunx",
337
+ "args": ["mcp-jira-cloud@latest"],
237
338
  "env": {
238
339
  "JIRA_BASE_URL": "https://your-domain.atlassian.net",
239
340
  "JIRA_EMAIL": "your-email@example.com",
@@ -244,13 +345,17 @@ Add to your Claude configuration (`claude_desktop_config.json`):
244
345
  }
245
346
  ```
246
347
 
247
- **After global install (`npm i -g mcp-jira-cloud`):**
348
+ </details>
349
+
350
+ <details>
351
+ <summary><strong>📦 Using npx</strong></summary>
352
+
248
353
  ```json
249
354
  {
250
355
  "mcpServers": {
251
356
  "jira": {
252
- "command": "jira-mcp",
253
- "args": [],
357
+ "command": "npx",
358
+ "args": ["-y", "mcp-jira-cloud@latest"],
254
359
  "env": {
255
360
  "JIRA_BASE_URL": "https://your-domain.atlassian.net",
256
361
  "JIRA_EMAIL": "your-email@example.com",
@@ -261,13 +366,38 @@ Add to your Claude configuration (`claude_desktop_config.json`):
261
366
  }
262
367
  ```
263
368
 
369
+ </details>
370
+
264
371
  ---
265
372
 
266
373
  #### ⚡ Cursor
267
374
 
268
375
  Create `.cursor/mcp.json` in your project or home directory:
269
376
 
270
- **Using npx (recommended):**
377
+ <details>
378
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
379
+
380
+ ```json
381
+ {
382
+ "mcpServers": {
383
+ "jira": {
384
+ "command": "bunx",
385
+ "args": ["mcp-jira-cloud@latest"],
386
+ "env": {
387
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
388
+ "JIRA_EMAIL": "your-email@example.com",
389
+ "JIRA_API_TOKEN": "your-api-token"
390
+ }
391
+ }
392
+ }
393
+ }
394
+ ```
395
+
396
+ </details>
397
+
398
+ <details>
399
+ <summary><strong>📦 Using npx</strong></summary>
400
+
271
401
  ```json
272
402
  {
273
403
  "mcpServers": {
@@ -284,7 +414,11 @@ Create `.cursor/mcp.json` in your project or home directory:
284
414
  }
285
415
  ```
286
416
 
287
- **After global install (`npm i -g mcp-jira-cloud`):**
417
+ </details>
418
+
419
+ <details>
420
+ <summary><strong>⚡ After global install</strong></summary>
421
+
288
422
  ```json
289
423
  {
290
424
  "mcpServers": {
@@ -301,13 +435,38 @@ Create `.cursor/mcp.json` in your project or home directory:
301
435
  }
302
436
  ```
303
437
 
438
+ </details>
439
+
304
440
  ---
305
441
 
306
442
  #### 🔧 Windsurf
307
443
 
308
444
  Add to your Windsurf MCP configuration:
309
445
 
310
- **Using npx (recommended):**
446
+ <details>
447
+ <summary><strong>🥟 Using Bun (recommended for beginners)</strong></summary>
448
+
449
+ ```json
450
+ {
451
+ "mcpServers": {
452
+ "jira": {
453
+ "command": "bunx",
454
+ "args": ["mcp-jira-cloud@latest"],
455
+ "env": {
456
+ "JIRA_BASE_URL": "https://your-domain.atlassian.net",
457
+ "JIRA_EMAIL": "your-email@example.com",
458
+ "JIRA_API_TOKEN": "your-api-token"
459
+ }
460
+ }
461
+ }
462
+ }
463
+ ```
464
+
465
+ </details>
466
+
467
+ <details>
468
+ <summary><strong>📦 Using npx</strong></summary>
469
+
311
470
  ```json
312
471
  {
313
472
  "mcpServers": {
@@ -324,7 +483,11 @@ Add to your Windsurf MCP configuration:
324
483
  }
325
484
  ```
326
485
 
327
- **After global install (`npm i -g mcp-jira-cloud`):**
486
+ </details>
487
+
488
+ <details>
489
+ <summary><strong>⚡ After global install</strong></summary>
490
+
328
491
  ```json
329
492
  {
330
493
  "mcpServers": {
@@ -341,6 +504,8 @@ Add to your Windsurf MCP configuration:
341
504
  }
342
505
  ```
343
506
 
507
+ </details>
508
+
344
509
  ## ⚙️ Configuration
345
510
 
346
511
  ### Environment Variables
@@ -664,6 +829,29 @@ Once configured, interact with Jira through natural conversation:
664
829
 
665
830
  ## 🔧 Troubleshooting
666
831
 
832
+ <details>
833
+ <summary><strong>🥟 Bun Installation Issues</strong></summary>
834
+
835
+ **Windows (PowerShell as Administrator):**
836
+ ```powershell
837
+ # If irm fails, try:
838
+ Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
839
+ irm bun.sh/install.ps1 | iex
840
+ ```
841
+
842
+ **macOS/Linux:**
843
+ ```bash
844
+ # If curl fails, check your internet connection or try:
845
+ brew install oven-sh/bun/bun # macOS with Homebrew
846
+ ```
847
+
848
+ **Verify Installation:**
849
+ ```bash
850
+ bun --version # Should show 1.x.x
851
+ ```
852
+
853
+ </details>
854
+
667
855
  <details>
668
856
  <summary><strong>❌ "MISSING_AUTH" Error</strong></summary>
669
857
 
@@ -715,6 +903,27 @@ The issue or project doesn't exist, or you don't have access to view it.
715
903
 
716
904
  </details>
717
905
 
906
+ <details>
907
+ <summary><strong>❌ npx/bunx Using Old Version</strong></summary>
908
+
909
+ Clear the cache to ensure you get the latest version:
910
+
911
+ **npm:**
912
+ ```bash
913
+ npx -y --package=mcp-jira-cloud@latest mcp-jira-cloud
914
+ # or clear cache:
915
+ npm cache clean --force
916
+ ```
917
+
918
+ **Bun:**
919
+ ```bash
920
+ bunx --bun mcp-jira-cloud@latest
921
+ # or clear cache:
922
+ bun pm cache rm
923
+ ```
924
+
925
+ </details>
926
+
718
927
  ## 📦 Package Information
719
928
 
720
929
  | Attribute | Value |
@@ -722,7 +931,7 @@ The issue or project doesn't exist, or you don't have access to view it.
722
931
  | Package name | [`mcp-jira-cloud`](https://www.npmjs.com/package/mcp-jira-cloud) |
723
932
  | Latest Version | ![npm version](https://img.shields.io/npm/v/mcp-jira-cloud?style=flat-square) |
724
933
  | License | [MIT](LICENSE) |
725
- | Node.js | ≥18.0.0 |
934
+ | Runtime | Bun ≥1.0.0 or Node.js ≥18.0.0 |
726
935
  | TypeScript | ≥5.0.0 |
727
936
  | Module | ES Modules |
728
937
  | Tools | **74** |
@@ -738,7 +947,25 @@ The issue or project doesn't exist, or you don't have access to view it.
738
947
 
739
948
  ## 🆕 What's New
740
949
 
741
- ### 🚀 v4.0.0 (Latest)
950
+ ### 🥟 v4.2.0 (Latest)
951
+
952
+ | Feature | Description |
953
+ |---------|-------------|
954
+ | 🥟 **Bun Support** | Run with `bunx mcp-jira-cloud@latest` - easier for beginners |
955
+ | 📖 **Better Docs** | Simplified prerequisites and configuration examples |
956
+
957
+ ---
958
+
959
+ ### 🔍 v4.1.0
960
+
961
+ | Feature | Description |
962
+ |---------|-------------|
963
+ | 🎯 **Improved Tool Descriptions** | Better trigger phrases, negative guidance, and cross-references for AI agents |
964
+ | 📋 **Prerequisites Section** | Clear requirements documented in README |
965
+
966
+ ---
967
+
968
+ ### 🚀 v4.0.0
742
969
 
743
970
  | Change | Description |
744
971
  |--------|-------------|
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.1",
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",