jira_create_issue
Create a new JIRA issue with project key, summary, and issue type. Optionally add description, priority, assignee, labels, and custom fields; returns the created issue key and ID.
Instructions
Create a new JIRA issue. Returns the created issue key and ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Array of labels to add to the issue | |
| parent | No | Parent issue key (for subtasks or linking stories to epics) | |
| summary | Yes | The issue summary/title | |
| assignee | No | Atlassian account ID of the assignee | |
| priority | No | Priority name (e.g., "High", "Medium", "Low") | |
| issueType | Yes | The issue type (e.g., "Task", "Bug", "Story", "Epic", "Sub-task") | |
| components | No | Array of component names to add to the issue | |
| projectKey | Yes | The project key (e.g., PROJ) | |
| description | No | The issue description | |
| customFields | No | Custom fields to set on the issue. Keys should be field IDs (e.g., "customfield_10001") and values depend on field type. Use jira_get_create_fields to discover required fields and their formats. |