create_issue
Create new Jira issues with required fields like project key, summary, and issue type. Use get_create_metadata first to discover required fields and allowed values.
Instructions
Create a new Jira issue with specified fields. IMPORTANT: Always use get_create_metadata first to discover required fields, custom fields, and allowed values for the project and issue type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectKey | Yes | The project key where the issue will be created (e.g., PROJ, DEV) | |
| summary | Yes | The issue summary/title | |
| issueType | Yes | The issue type (e.g., Bug, Task, Story) | |
| description | No | The issue description in Atlassian Document Format (ADF). Can be a simple string for plain text, or an ADF object for rich formatting. Example ADF: {"type":"doc","version":1,"content":[{"type":"paragraph","content":[{"type":"text","text":"Description text"}]}]} | |
| priority | No | Priority name (e.g., High, Medium, Low) - optional | |
| assignee | No | Assignee account ID or email (will auto-lookup account ID from email) - optional | |
| labels | No | Array of labels - optional | |
| customFields | No | Custom fields as key-value pairs (e.g., {"customfield_10000": "value"}) - optional. Use get_create_metadata to discover available fields. |