Jira MCP Server

assign_ticket

Assign a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/assignee

Input Schema

NameRequiredDescriptionDefault
accountIdYesThe account id of the assignee
issueIdOrKeyYesThe issue id or key

Input Schema (JSON Schema)

{ "properties": { "accountId": { "description": "The account id of the assignee", "type": "string" }, "issueIdOrKey": { "description": "The issue id or key", "type": "string" } }, "required": [ "accountId", "issueIdOrKey" ], "type": "object" }