@aaronsb/jira-cloud-mcp 0.2.5 → 0.2.6

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.
@@ -176,8 +176,8 @@ export class JiraClient {
176
176
  fields.parent = params.parentKey ? { key: params.parentKey } : null;
177
177
  }
178
178
  if (params.assignee !== undefined) {
179
- // null unassigns, string assigns by account ID or name
180
- fields.assignee = params.assignee ? { id: params.assignee } : null;
179
+ // null unassigns, string assigns by account ID
180
+ fields.assignee = params.assignee ? { accountId: params.assignee } : null;
181
181
  }
182
182
  if (params.priority)
183
183
  fields.priority = { id: params.priority };
@@ -696,7 +696,7 @@ export class JiraClient {
696
696
  if (params.priority)
697
697
  fields.priority = { id: params.priority };
698
698
  if (params.assignee)
699
- fields.assignee = { name: params.assignee };
699
+ fields.assignee = { accountId: params.assignee };
700
700
  if (params.labels)
701
701
  fields.labels = params.labels;
702
702
  if (params.customFields) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aaronsb/jira-cloud-mcp",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Model Context Protocol (MCP) server for Jira Cloud - enables AI assistants to interact with Jira",
5
5
  "type": "module",
6
6
  "bin": {