create_ticket
Create a Jira issue with a summary, description, and issue type. Use project key, board name, or board ID to set the destination.
Instructions
Create an issue in a project. project is optional if the destination is unambiguous: set JIRA_DEFAULT_PROJECT in MCP env, pass boardName or boardId (Jira Software Agile boards), or omit when your account sees exactly one project across boards—otherwise the tool fails with a clear error listing boards (use list_boards). Description is plain text: v3 → ADF, v2 → string (JIRA_REST_API_PREFIX, JIRA_DESCRIPTION_FORMAT). Does not set sprint/backlog placement—use the UI or Agile REST for that.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent | No | Parent issue key (for subtasks) | |
| boardId | No | Agile board id as string (from list_boards or the board URL). Resolves the board's project key when project is not set. | |
| project | No | Project key (e.g. PROJ). If omitted, resolution uses JIRA_DEFAULT_PROJECT, boardName/boardId, or a single board project. | |
| summary | Yes | Ticket summary | |
| boardName | No | Jira Software board name (substring match). Resolves the board's project key when project is not set. | |
| issuetype | Yes | Issue type name (Bug, Story, Task, etc.) | |
| description | Yes | Ticket description (plain text) |