mcp-jira-cloud 2.0.0 → 2.0.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 (3) hide show
  1. package/README.md +212 -26
  2. package/assets/logo.svg +30 -0
  3. package/package.json +18 -2
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/tezaswi7222/jira-mcp/main/assets/logo.png" alt="Jira MCP Logo" width="120" height="120">
2
+ <img src="https://cdn.jsdelivr.net/npm/mcp-jira-cloud@latest/assets/logo.svg" alt="Jira MCP Logo" width="120" height="120">
3
3
  </p>
4
4
 
5
5
  <h1 align="center">Jira MCP Server</h1>
@@ -48,6 +48,26 @@
48
48
 
49
49
  A **Model Context Protocol (MCP)** server that enables AI assistants like **GitHub Copilot** and **Claude** to interact with your Jira Cloud instance. Search issues, manage tickets, log work, and more — all through natural language conversation.
50
50
 
51
+ ## 🎯 Why Use This Package?
52
+
53
+ | Without MCP | With Jira MCP |
54
+ |-------------|---------------|
55
+ | Switch between IDE and browser | Stay in your coding environment |
56
+ | Manual copy-paste of issue details | AI fetches context automatically |
57
+ | Learn JQL syntax | Natural language queries |
58
+ | Click through Jira UI | Voice/text commands |
59
+ | Context switching kills productivity | Seamless workflow integration |
60
+
61
+ ### Supported AI Assistants
62
+
63
+ | Assistant | Status |
64
+ |-----------|--------|
65
+ | GitHub Copilot (VS Code) | ✅ Fully Supported |
66
+ | Claude Desktop | ✅ Fully Supported |
67
+ | Cursor | ✅ Fully Supported |
68
+ | Windsurf | ✅ Fully Supported |
69
+ | Any MCP-compatible client | ✅ Fully Supported |
70
+
51
71
  ## ✨ Features
52
72
 
53
73
  <table>
@@ -63,9 +83,27 @@ A **Model Context Protocol (MCP)** server that enables AI assistants like **GitH
63
83
  <td>
64
84
 
65
85
  ### 📋 Issue Management
86
+ - Full CRUD operations
87
+ - Workflow transitions
66
88
  - Search with JQL
67
- - Get issue details & comments
68
- - View your open tickets
89
+
90
+ </td>
91
+ </tr>
92
+ <tr>
93
+ <td>
94
+
95
+ ### 🏃 Agile/Scrum
96
+ - Sprint management (create, start, complete)
97
+ - Board views (Scrum & Kanban)
98
+ - Backlog & ranking
99
+
100
+ </td>
101
+ <td>
102
+
103
+ ### 🔗 Relationships
104
+ - Issue linking (blocks, relates, duplicates)
105
+ - Watchers & voting
106
+ - Epic management
69
107
 
70
108
  </td>
71
109
  </tr>
@@ -80,15 +118,19 @@ A **Model Context Protocol (MCP)** server that enables AI assistants like **GitH
80
118
  </td>
81
119
  <td>
82
120
 
83
- ### 💬 Collaboration
84
- - Add comments to issues
85
- - Access project information
86
- - List accessible projects
121
+ ### 🗄️ Filters & Metadata
122
+ - Create/manage saved filters
123
+ - Field metadata access
124
+ - Component & version management
87
125
 
88
126
  </td>
89
127
  </tr>
90
128
  </table>
91
129
 
130
+ <p align="center">
131
+ <strong>57 Tools</strong> for comprehensive Jira management
132
+ </p>
133
+
92
134
  ## 🚀 Quick Start
93
135
 
94
136
  ### Installation
@@ -248,27 +290,32 @@ For OAuth authentication:
248
290
 
249
291
  ## 🛠️ Available Tools
250
292
 
251
- ### Authentication
293
+ > **57 tools** organised into 10 categories
294
+
295
+ ### 🔐 Authentication (7 tools)
252
296
 
253
297
  | Tool | Description |
254
298
  |------|-------------|
255
299
  | `jira_auth_status` | Check current authentication status |
256
300
  | `jira_whoami` | Get current user's Jira profile |
257
301
  | `jira_clear_auth` | Clear stored credentials |
258
-
259
- <details>
260
- <summary><strong>OAuth Tools</strong></summary>
261
-
262
- | Tool | Description |
263
- |------|-------------|
264
302
  | `jira_oauth_get_auth_url` | Generate OAuth authorisation URL |
265
303
  | `jira_oauth_exchange_code` | Exchange OAuth code for tokens |
266
304
  | `jira_oauth_refresh` | Manually refresh OAuth token |
267
305
  | `jira_oauth_list_sites` | List accessible Jira sites |
268
306
 
269
- </details>
307
+ ### 📝 Issue CRUD (6 tools)
270
308
 
271
- ### Issue Management
309
+ | Tool | Description |
310
+ |------|-------------|
311
+ | `jira_create_issue` | Create a new issue with full field support |
312
+ | `jira_update_issue` | Update issue fields (partial update supported) |
313
+ | `jira_delete_issue` | Delete an issue (with safety confirmation) |
314
+ | `jira_assign_issue` | Assign or unassign a user |
315
+ | `jira_get_transitions` | Get available workflow transitions |
316
+ | `jira_transition_issue` | Move issue through workflow states |
317
+
318
+ ### 🔍 Issue Query (6 tools)
272
319
 
273
320
  | Tool | Description |
274
321
  |------|-------------|
@@ -279,7 +326,7 @@ For OAuth authentication:
279
326
  | `jira_get_my_open_issues` | Get your open/in-progress issues |
280
327
  | `jira_resolve` | Smart routing tool for common intents |
281
328
 
282
- ### Comments & Work Logs
329
+ ### 💬 Comments & Work Logs (4 tools)
283
330
 
284
331
  | Tool | Description |
285
332
  |------|-------------|
@@ -288,12 +335,108 @@ For OAuth authentication:
288
335
  | `jira_add_worklog` | Log time spent on an issue |
289
336
  | `jira_get_worklogs` | Get work logs for an issue |
290
337
 
291
- ### Projects
338
+ ### ⚙️ Configuration & Metadata (9 tools)
292
339
 
293
340
  | Tool | Description |
294
341
  |------|-------------|
295
342
  | `jira_list_projects` | List accessible Jira projects |
296
343
  | `jira_get_project` | Get project details and metadata |
344
+ | `jira_get_issue_types` | Get available issue types |
345
+ | `jira_get_priorities` | Get priority levels |
346
+ | `jira_get_statuses` | Get available statuses |
347
+ | `jira_get_components` | Get project components |
348
+ | `jira_get_versions` | Get project versions |
349
+ | `jira_search_users` | Search for Jira users |
350
+ | `jira_get_changelog` | Get issue change history |
351
+
352
+ <details>
353
+ <summary><strong>🏃 Agile/Sprint Tools (16 tools)</strong></summary>
354
+
355
+ | Tool | Description |
356
+ |------|-------------|
357
+ | `jira_get_boards` | List Scrum and Kanban boards |
358
+ | `jira_get_board` | Get board details |
359
+ | `jira_get_board_configuration` | Get board configuration (columns, estimation) |
360
+ | `jira_get_sprints` | Get sprints for a board |
361
+ | `jira_get_sprint` | Get sprint details |
362
+ | `jira_create_sprint` | Create a new sprint |
363
+ | `jira_update_sprint` | Update sprint details |
364
+ | `jira_start_sprint` | Start a future sprint |
365
+ | `jira_complete_sprint` | Complete an active sprint |
366
+ | `jira_delete_sprint` | Delete a sprint |
367
+ | `jira_get_sprint_issues` | Get issues in a sprint |
368
+ | `jira_move_issues_to_sprint` | Move issues to a sprint |
369
+ | `jira_get_backlog_issues` | Get backlog issues for a board |
370
+ | `jira_move_issues_to_backlog` | Move issues to backlog |
371
+ | `jira_rank_issues` | Change issue ranking |
372
+
373
+ </details>
374
+
375
+ <details>
376
+ <summary><strong>🔗 Issue Relationships (11 tools)</strong></summary>
377
+
378
+ | Tool | Description |
379
+ |------|-------------|
380
+ | `jira_get_issue_links` | Get linked issues |
381
+ | `jira_create_issue_link` | Link two issues together |
382
+ | `jira_delete_issue_link` | Remove an issue link |
383
+ | `jira_get_link_types` | Get available link types |
384
+ | `jira_get_watchers` | Get issue watchers |
385
+ | `jira_add_watcher` | Add a watcher to an issue |
386
+ | `jira_remove_watcher` | Remove a watcher |
387
+ | `jira_get_votes` | Get issue vote count |
388
+ | `jira_add_vote` | Vote for an issue |
389
+ | `jira_remove_vote` | Remove your vote |
390
+
391
+ </details>
392
+
393
+ <details>
394
+ <summary><strong>📎 Attachments (2 tools)</strong></summary>
395
+
396
+ | Tool | Description |
397
+ |------|-------------|
398
+ | `jira_get_attachments` | Get issue attachments |
399
+ | `jira_delete_attachment` | Delete an attachment |
400
+
401
+ </details>
402
+
403
+ <details>
404
+ <summary><strong>📊 Epic Management (4 tools)</strong></summary>
405
+
406
+ | Tool | Description |
407
+ |------|-------------|
408
+ | `jira_get_epics` | Get epics for a board |
409
+ | `jira_get_epic_issues` | Get issues belonging to an epic |
410
+ | `jira_move_issues_to_epic` | Move issues to an epic |
411
+ | `jira_remove_issues_from_epic` | Remove issues from an epic |
412
+
413
+ </details>
414
+
415
+ <details>
416
+ <summary><strong>🗂️ Field Metadata (3 tools)</strong></summary>
417
+
418
+ | Tool | Description |
419
+ |------|-------------|
420
+ | `jira_get_fields` | Get all available fields (including custom) |
421
+ | `jira_get_create_metadata` | Get metadata for creating issues |
422
+ | `jira_get_edit_metadata` | Get metadata for editing issues |
423
+
424
+ </details>
425
+
426
+ <details>
427
+ <summary><strong>🗄️ Filters (7 tools)</strong></summary>
428
+
429
+ | Tool | Description |
430
+ |------|-------------|
431
+ | `jira_get_filters` | Search saved filters |
432
+ | `jira_get_filter` | Get filter details |
433
+ | `jira_create_filter` | Create a new saved filter |
434
+ | `jira_update_filter` | Update an existing filter |
435
+ | `jira_delete_filter` | Delete a filter |
436
+ | `jira_get_my_filters` | Get filters owned by you |
437
+ | `jira_get_favourite_filters` | Get favourite filters |
438
+
439
+ </details>
297
440
 
298
441
  ## 💡 Usage Examples
299
442
 
@@ -305,11 +448,27 @@ Once configured, interact with Jira through natural conversation:
305
448
  👤 "What's the status of PROJ-123?"
306
449
  🤖 Fetches and displays issue details, status, and assignee
307
450
 
308
- 👤 "Find all open bugs assigned to me"
309
- 🤖 Searches using JQL and returns matching issues
451
+ 👤 "Create a bug in PROJ for 'Login button not working'"
452
+ 🤖 Creates a new bug issue and returns the issue key
453
+
454
+ 👤 "Assign PROJ-456 to john@example.com"
455
+ 🤖 Assigns the issue to the specified user
456
+
457
+ 👤 "Move PROJ-789 to 'In Progress'"
458
+ 🤖 Transitions the issue to the new status
459
+ ```
460
+
461
+ ### Sprint & Agile
310
462
 
311
- 👤 "What tickets am I working on?"
312
- 🤖 Lists your in-progress issues
463
+ ```
464
+ 👤 "Show me the active sprint for board 123"
465
+ 🤖 Displays current sprint details with dates and goal
466
+
467
+ 👤 "Move PROJ-123 and PROJ-124 to sprint 456"
468
+ 🤖 Moves the issues to the specified sprint
469
+
470
+ 👤 "What's in the backlog for the PROJ board?"
471
+ 🤖 Lists all backlog issues with priorities
313
472
  ```
314
473
 
315
474
  ### Time Tracking
@@ -325,11 +484,14 @@ Once configured, interact with Jira through natural conversation:
325
484
  ### Collaboration
326
485
 
327
486
  ```
328
- 👤 "Add a comment to PROJ-123 saying 'Fixed in latest commit'"
329
- 🤖 Adds the comment to the issue
487
+ 👤 "Link PROJ-123 as blocking PROJ-456"
488
+ 🤖 Creates a "blocks" relationship between issues
489
+
490
+ 👤 "Add me as a watcher on PROJ-789"
491
+ 🤖 Adds you to the issue's watch list
330
492
 
331
- 👤 "Show me the comments on PROJ-456"
332
- 🤖 Displays all comments with authors and timestamps
493
+ 👤 "Show all issues in epic PROJ-100"
494
+ 🤖 Lists all child issues of the epic
333
495
  ```
334
496
 
335
497
  ## 🔧 Troubleshooting
@@ -390,10 +552,12 @@ The issue or project doesn't exist, or you don't have access to view it.
390
552
  | Attribute | Value |
391
553
  |-----------|-------|
392
554
  | Package name | [`mcp-jira-cloud`](https://www.npmjs.com/package/mcp-jira-cloud) |
555
+ | Version | **2.0.0** |
393
556
  | License | [MIT](LICENSE) |
394
557
  | Node.js | ≥18.0.0 |
395
558
  | TypeScript | ≥5.0.0 |
396
559
  | Module | ES Modules |
560
+ | Tools | **57** |
397
561
 
398
562
  ### Dependencies
399
563
 
@@ -404,6 +568,28 @@ The issue or project doesn't exist, or you don't have access to view it.
404
568
  | [`keytar`](https://www.npmjs.com/package/keytar) | Secure credential storage |
405
569
  | [`zod`](https://www.npmjs.com/package/zod) | Schema validation |
406
570
 
571
+ ## 🆕 What's New in v2.0.0
572
+
573
+ <details>
574
+ <summary><strong>Click to see full changelog</strong></summary>
575
+
576
+ ### Added
577
+ - **Issue CRUD** - Create, update, delete issues with full field support
578
+ - **Workflow Transitions** - Move issues through workflow states
579
+ - **Agile/Scrum** - Complete sprint and board management (16 tools)
580
+ - **Issue Linking** - Blocks, relates, duplicates relationships
581
+ - **Watchers & Voting** - Collaboration features
582
+ - **Epic Management** - Organise issues under epics
583
+ - **Filters** - Create and manage saved JQL filters
584
+ - **Metadata** - Access field configurations and create metadata
585
+
586
+ ### Changed
587
+ - Total tools increased from 18 to 57
588
+ - Improved TypeScript strict mode compliance
589
+ - Enhanced error handling and validation
590
+
591
+ </details>
592
+
407
593
  ## 🔒 Security
408
594
 
409
595
  - Credentials are stored securely via system keychain (Keytar)
@@ -0,0 +1,30 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" style="stop-color:#0052CC;stop-opacity:1" />
5
+ <stop offset="100%" style="stop-color:#2684FF;stop-opacity:1" />
6
+ </linearGradient>
7
+ <linearGradient id="accentGrad" x1="0%" y1="0%" x2="100%" y2="100%">
8
+ <stop offset="0%" style="stop-color:#FF5630;stop-opacity:1" />
9
+ <stop offset="100%" style="stop-color:#FF7452;stop-opacity:1" />
10
+ </linearGradient>
11
+ </defs>
12
+
13
+ <!-- Background circle -->
14
+ <circle cx="60" cy="60" r="56" fill="url(#bgGrad)" />
15
+
16
+ <!-- Jira-inspired shape -->
17
+ <g transform="translate(30, 28)">
18
+ <!-- Main shape -->
19
+ <path d="M30 0 L60 30 L30 60 L0 30 Z" fill="white" opacity="0.95"/>
20
+
21
+ <!-- Inner diamond -->
22
+ <path d="M30 12 L48 30 L30 48 L12 30 Z" fill="url(#accentGrad)"/>
23
+
24
+ <!-- Center dot -->
25
+ <circle cx="30" cy="30" r="6" fill="white"/>
26
+ </g>
27
+
28
+ <!-- MCP text indicator -->
29
+ <text x="60" y="105" text-anchor="middle" font-family="Arial, sans-serif" font-size="12" font-weight="bold" fill="white">MCP</text>
30
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-jira-cloud",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
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 57 tools for comprehensive Jira management.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -15,10 +15,12 @@
15
15
  "./package.json": "./package.json"
16
16
  },
17
17
  "bin": {
18
+ "mcp-jira-cloud": "dist/index.js",
18
19
  "jira-mcp": "dist/index.js"
19
20
  },
20
21
  "files": [
21
22
  "dist",
23
+ "assets",
22
24
  "README.md",
23
25
  "CHANGELOG.md",
24
26
  "LICENSE",
@@ -56,7 +58,21 @@
56
58
  "ai",
57
59
  "llm",
58
60
  "developer-tools",
59
- "productivity"
61
+ "productivity",
62
+ "agile",
63
+ "scrum",
64
+ "sprint",
65
+ "kanban",
66
+ "issue-tracker",
67
+ "project-management",
68
+ "cursor",
69
+ "windsurf",
70
+ "anthropic",
71
+ "openai",
72
+ "jira-api",
73
+ "rest-api",
74
+ "workflow",
75
+ "tickets"
60
76
  ],
61
77
  "author": {
62
78
  "name": "Tezaswi Raj (github: tezaswi7222)",