create_issue
Create a new Jira issue by specifying project, summary, and issue type. Optionally add description, priority, assignee, labels, components, sprint, parent, epic link, and custom fields.
Instructions
Create a new issue in Jira. Requires at minimum: projectKey, summary, and issueType. Optionally accepts description, priority, assignee, labels, components, sprint assignment, parent issue (for subtasks), epic link, and custom fields. Returns the created issue key, ID, and URL. Before creating, consider using search_issues to check for potential duplicates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Labels to apply to the issue. | |
| sprint | No | Sprint name or ID to add the issue to. | |
| dueDate | No | Due date in YYYY-MM-DD format. | |
| summary | Yes | Issue title/summary. REQUIRED. Max 255 characters. | |
| assignee | No | Account ID of the user to assign. Omit for automatic assignment. | |
| epicLink | No | Epic issue key to link (e.g., "PROJ-10"). For Story, Task, Bug types. | |
| epicName | No | Epic name. REQUIRED when issueType is "Epic". | |
| priority | No | Priority level. Default: project default. | |
| issueType | Yes | Issue type. REQUIRED. "Subtask" requires parentKey. "Epic" requires epicName. | |
| parentKey | No | Parent issue key. REQUIRED when issueType is "Subtask". | |
| components | No | Component names to associate with the issue. | |
| projectKey | Yes | Project key (e.g., "PROJ"). REQUIRED. | |
| description | No | Issue description. Supports Jira markdown and Atlassian Document Format (ADF). | |
| storyPoints | No | Story point estimate (0–100). | |
| customFields | No | Map of custom field IDs to values. Keys must be like "customfield_10014". |