create_state
Add a new state to a project in the Plane MCP Server by specifying project ID and state details like color and name. Simplifies project management workflows.
Instructions
Create a new state in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to create the state in | |
state_data | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project to create the state in",
"type": "string"
},
"state_data": {
"additionalProperties": false,
"properties": {
"color": {
"maxLength": 255,
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"created_by": {
"format": "uuid",
"type": "string"
},
"default": {
"type": "boolean"
},
"deleted_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"external_id": {
"maxLength": 255,
"type": "string"
},
"external_source": {
"maxLength": 255,
"type": "string"
},
"group": {},
"id": {
"format": "uuid",
"type": "string"
},
"is_triage": {
"type": "boolean"
},
"name": {
"maxLength": 255,
"type": "string"
},
"project": {
"format": "uuid",
"type": "string"
},
"sequence": {
"type": "number"
},
"slug": {
"maxLength": 100,
"pattern": "^[-a-zA-Z0-9_]+$",
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"updated_by": {
"format": "uuid",
"type": "string"
},
"workspace": {
"format": "uuid",
"type": "string"
}
},
"required": [
"color",
"name"
],
"type": "object"
}
},
"required": [
"project_id",
"state_data"
],
"type": "object"
}