@rui.branco/jira-mcp 1.1.0 → 1.1.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 (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -149,8 +149,14 @@ To enable Figma integration:
149
149
 
150
150
  | Tool | Description | Parameters |
151
151
  |------|-------------|------------|
152
- | `jira_get_ticket` | Fetch a ticket by key | `issueKey` (required), `downloadImages`, `fetchFigma` |
153
- | `jira_search` | Search with JQL | `jql` (required), `maxResults` |
152
+ | `jira_get_ticket` | Fetch a ticket by key with description, comments, attachments, and Figma designs | `issueKey` (required), `downloadImages`, `fetchFigma` |
153
+ | `jira_search` | Search tickets using JQL | `jql` (required), `maxResults` |
154
+ | `jira_add_comment` | Add a comment to a ticket | `issueKey` (required), `comment` (required) |
155
+ | `jira_reply_comment` | Reply to a specific comment with quote and mention | `issueKey` (required), `commentId` (required), `reply` (required) |
156
+ | `jira_edit_comment` | Edit an existing comment | `issueKey` (required), `commentId` (required), `comment` (required) |
157
+ | `jira_delete_comment` | Delete a comment (irreversible) | `issueKey` (required), `commentId` (required) |
158
+ | `jira_transition` | Change ticket status (omit `transitionId` to list available transitions) | `issueKey` (required), `transitionId` |
159
+ | `jira_update_ticket` | Update ticket fields (summary, description, assignee, priority, labels) | `issueKey` (required), plus optional field parameters |
154
160
 
155
161
  ### Configuration
156
162
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rui.branco/jira-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Jira MCP server for Claude Code - fetch tickets, search with JQL, update tickets, manage comments, change status, and get Figma designs",
5
5
  "main": "index.js",
6
6
  "bin": {