@rui.branco/jira-mcp 1.6.11 → 1.6.12

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/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1635,6 +1635,9 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1635
1635
  ],
1636
1636
  };
1637
1637
  } else if (name === "jira_get_ticket") {
1638
+ if (!args.issueKey) {
1639
+ return { content: [{ type: "text", text: "Error: Missing required parameter 'issueKey'. You passed 'ticketId' which is not a valid parameter. Use 'issueKey' instead (e.g. issueKey: \"MODS-12115\")." }] };
1640
+ }
1638
1641
  const downloadImages = args.downloadImages !== false;
1639
1642
  const fetchFigma = args.fetchFigma !== false;
1640
1643
  const inst = args.instance ? getInstanceByName(args.instance) : null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rui.branco/jira-mcp",
3
- "version": "1.6.11",
3
+ "version": "1.6.12",
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": {