jira_create_issue
Create a new Jira issue (Story, Bug, Task, etc.) in a project, with required summary and Markdown description, plus optional labels, priority, and assignee.
Instructions
Create a new Jira issue (Story, Bug, Task, etc.) in a given project. New issues are created unassigned by default. REQUIRED: Always provide a markdown-formatted description.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Optional. List of label strings to attach to the issue. | |
| summary | Yes | The issue summary / title. | |
| priority | No | Optional. Priority name, e.g. 'Highest', 'High', 'Medium', 'Low', 'Lowest'. | |
| issueType | Yes | The issue type name, e.g. 'Story', 'Bug', 'Task', 'Epic'. | |
| projectKey | Yes | The key of the Jira project to create the issue in (e.g. 'PROJ'). | |
| description | Yes | REQUIRED. Markdown-formatted description for the issue. Use headers (# ## ###), lists (*, -), bold (**text**), italic (*text*), code (`code`), links ([text](url)), tables, blockquotes (>), and horizontal rules (---). Automatically converted to Atlassian Document Format (ADF) for Jira Cloud. | |
| assigneeAccountId | No | Optional. The Atlassian account ID of the user to assign the issue to. Leave empty/undefined for unassigned (default). When cloning issues, do NOT copy the assignee - new issues should remain unassigned. |