create-label
Create a new label in a Plane project to organize and categorize issues, with options to set name, description, and color.
Instructions
Create a new label in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Color code for the label (optional, e.g., #ff0000) | |
| description | No | Description of the label (optional) | |
| name | Yes | Name of the label | |
| project_id | Yes | ID of the project where the label should be created |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Color code for the label (optional, e.g., #ff0000)",
"type": "string"
},
"description": {
"description": "Description of the label (optional)",
"type": "string"
},
"name": {
"description": "Name of the label",
"type": "string"
},
"project_id": {
"description": "ID of the project where the label should be created",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}