linear_create_issue
Create a new issue in Linear's project management system by providing a title, team ID, description, priority, status, and assignee to track work items effectively.
Instructions
Create a new Linear issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigneeId | No | User ID to assign the issue to | |
description | No | Issue description (markdown supported) | |
priority | No | Priority level (0-4), where 0=no priority, 1=urgent, 4=low | |
status | No | Initial status name (e.g., 'Todo', 'In Progress') | |
teamId | Yes | Team ID to create issue in | |
title | Yes | Issue title |
Input Schema (JSON Schema)
{
"properties": {
"assigneeId": {
"description": "User ID to assign the issue to",
"type": "string"
},
"description": {
"description": "Issue description (markdown supported)",
"type": "string"
},
"priority": {
"description": "Priority level (0-4), where 0=no priority, 1=urgent, 4=low",
"type": "number"
},
"status": {
"description": "Initial status name (e.g., 'Todo', 'In Progress')",
"type": "string"
},
"teamId": {
"description": "Team ID to create issue in",
"type": "string"
},
"title": {
"description": "Issue title",
"type": "string"
}
},
"required": [
"title",
"teamId"
],
"type": "object"
}