linear_create_label
Create a new label in Linear for organizing issues, allowing you to specify team, name, color, description, and parent label for hierarchical categorization.
Instructions
Create a new label in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | The color for the label in hex format (e.g. "#FF0000") | |
description | No | A description for the label | |
name | Yes | The name of the label | |
parentId | No | The ID of a parent label to create a nested label | |
teamId | Yes | The ID of the team to create the label for |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "The color for the label in hex format (e.g. \"#FF0000\")",
"type": "string"
},
"description": {
"description": "A description for the label",
"type": "string"
},
"name": {
"description": "The name of the label",
"type": "string"
},
"parentId": {
"description": "The ID of a parent label to create a nested label",
"type": "string"
},
"teamId": {
"description": "The ID of the team to create the label for",
"type": "string"
}
},
"required": [
"teamId",
"name"
],
"type": "object"
}