@@ -169,6 +169,7 @@ export const jiraWriteTool: ToolConfig<JiraWriteParams, JiraWriteResponse> = {
169169 summary : 'Issue created successfully' ,
170170 success : true ,
171171 url : '' ,
172+ assigneeId : null ,
172173 } ,
173174 }
174175 }
@@ -186,6 +187,7 @@ export const jiraWriteTool: ToolConfig<JiraWriteParams, JiraWriteResponse> = {
186187 summary : data . output . summary ?? '' ,
187188 success : data . output . success ?? true ,
188189 url : data . output . url ?? '' ,
190+ assigneeId : data . output . assigneeId ?? null ,
189191 } ,
190192 }
191193 }
@@ -200,6 +202,7 @@ export const jiraWriteTool: ToolConfig<JiraWriteParams, JiraWriteResponse> = {
200202 summary : data . output ?. summary ?? 'Issue created' ,
201203 success : false ,
202204 url : data . output ?. url ?? '' ,
205+ assigneeId : data . output ?. assigneeId ?? null ,
203206 } ,
204207 error : data . error ,
205208 }
@@ -212,5 +215,10 @@ export const jiraWriteTool: ToolConfig<JiraWriteParams, JiraWriteResponse> = {
212215 self : { type : 'string' , description : 'REST API URL for the created issue' } ,
213216 summary : { type : 'string' , description : 'Issue summary' } ,
214217 url : { type : 'string' , description : 'URL to the created issue in Jira' } ,
218+ assigneeId : {
219+ type : 'string' ,
220+ description : 'Account ID of the assigned user (null if no assignee was set)' ,
221+ optional : true ,
222+ } ,
215223 } ,
216224}
0 commit comments