create_issue
Add tasks, bugs, or feature requests to your Linear workspace with clarity and organization by specifying title, team, description, priority, assignee, and project details.
Instructions
Create a new issue in Linear. This tool is useful for adding new tasks, bugs, or feature requests to your Linear workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigneeId | No | The ID of the user to assign the issue to | |
debug | No | Debug mode to show extra diagnostics | |
description | No | The detailed description of the issue | |
priority | No | The priority of the issue (0-4) | |
projectId | No | The ID of the project to associate with the issue | |
stateId | No | The ID of the state to set for the issue | |
teamId | Yes | The ID of the Linear team where the issue will be created | |
title | Yes | The title of the issue to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assigneeId": {
"description": "The ID of the user to assign the issue to",
"type": "string"
},
"debug": {
"default": false,
"description": "Debug mode to show extra diagnostics",
"type": "boolean"
},
"description": {
"description": "The detailed description of the issue",
"type": "string"
},
"priority": {
"description": "The priority of the issue (0-4)",
"maximum": 4,
"minimum": 0,
"type": "number"
},
"projectId": {
"description": "The ID of the project to associate with the issue",
"type": "string"
},
"stateId": {
"description": "The ID of the state to set for the issue",
"type": "string"
},
"teamId": {
"description": "The ID of the Linear team where the issue will be created",
"minLength": 1,
"type": "string"
},
"title": {
"description": "The title of the issue to create",
"type": "string"
}
},
"required": [
"title",
"teamId"
],
"type": "object"
}