create-state
Create a new state in a Plane project to organize and track issue progress, supporting custom names, descriptions, colors, and predefined state groups.
Instructions
Create a new state in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Color code for the state (optional, e.g., #ff0000) | |
| description | No | Description of the state (optional) | |
| group | Yes | State group (unstarted, started, completed, cancelled) | |
| name | Yes | Name of the state | |
| project_id | Yes | ID of the project where the state should be created |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Color code for the state (optional, e.g., #ff0000)",
"type": "string"
},
"description": {
"description": "Description of the state (optional)",
"type": "string"
},
"group": {
"description": "State group (unstarted, started, completed, cancelled)",
"enum": [
"unstarted",
"started",
"completed",
"cancelled"
],
"type": "string"
},
"name": {
"description": "Name of the state",
"type": "string"
},
"project_id": {
"description": "ID of the project where the state should be created",
"type": "string"
}
},
"required": [
"project_id",
"name",
"group"
],
"type": "object"
}