Plane MCP Server

Official

create_state

Add a new state to a project in Plane MCP Server by specifying project ID and state details like name, color, and optional attributes.

Instructions

Create a new state in a project

Input Schema

NameRequiredDescriptionDefault
project_idYesThe uuid identifier of the project to create the state in
state_dataYes

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" }
ID: y5g9z3v76n