Jira MCP Server

create_issue

Create a new Jira issue

Input Schema

NameRequiredDescriptionDefault
assigneeNoEmail of the assignee
componentsNoArray of component names
descriptionNoDetailed description of the issue
issueTypeYesType of issue (e.g., "Task", "Bug", "Story")
labelsNoArray of labels to apply
priorityNoIssue priority
projectKeyYesProject key (e.g., "PP")
summaryYesIssue summary/title

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "Email of the assignee", "type": "string" }, "components": { "description": "Array of component names", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Detailed description of the issue", "type": "string" }, "issueType": { "description": "Type of issue (e.g., \"Task\", \"Bug\", \"Story\")", "type": "string" }, "labels": { "description": "Array of labels to apply", "items": { "type": "string" }, "type": "array" }, "priority": { "description": "Issue priority", "type": "string" }, "projectKey": { "description": "Project key (e.g., \"PP\")", "type": "string" }, "summary": { "description": "Issue summary/title", "type": "string" } }, "required": [ "projectKey", "summary", "issueType" ], "type": "object" }