create_issue
Create a new issue in Linear with title, description, team assignment, due date, priority, status, and optional parent issue linkage for project tracking.
Instructions
A tool that creates an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The description of the issue | |
dueDate | No | The due date of the issue | |
parentId | No | The ID of the parent issue, used to create a sub-issue | |
priority | No | The priority of the issue | no_priority |
status | No | The status of the issue | backlog |
teamId | Yes | The team ID the issue belongs to | |
title | Yes | The title of the issue |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the issue",
"type": "string"
},
"dueDate": {
"description": "The due date of the issue",
"type": "string"
},
"parentId": {
"description": "The ID of the parent issue, used to create a sub-issue",
"type": "string"
},
"priority": {
"default": "no_priority",
"description": "The priority of the issue",
"enum": [
"no_priority",
"urgent",
"high",
"medium",
"low"
],
"type": "string"
},
"status": {
"default": "backlog",
"description": "The status of the issue",
"enum": [
"triage",
"backlog",
"todo",
"in_progress",
"done",
"canceled"
],
"type": "string"
},
"teamId": {
"description": "The team ID the issue belongs to",
"type": "string"
},
"title": {
"description": "The title of the issue",
"type": "string"
}
},
"required": [
"teamId",
"title",
"description"
],
"type": "object"
}