Create issue (WRITE — mutates Linear)
linear_create_issue⚠️ WRITE / MUTATING: creates a new issue in Linear. Requires a teamId (from linear_list_teams) and a title. Optional description (markdown), priority (0=none,1=urgent,2=high,3=medium,4=low), and assigneeId. GraphQL: mutation issueCreate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Issue title. | |
| teamId | Yes | UUID of the team to create the issue in (from linear_list_teams). | |
| priority | No | 0 none, 1 urgent, 2 high, 3 medium, 4 low. | |
| assigneeId | No | UUID of the user to assign the issue to. | |
| description | No | Issue body in markdown. |