Plane MCP Server

Official

create_label

Generate and add a new label to a specific project in Plane's project management system. Define color, name, and optional attributes for organized project tracking and categorization.

Instructions

Create a new label in a project

Input Schema

NameRequiredDescriptionDefault
label_dataYes
project_idYesThe uuid identifier of the project to create the label in

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "label_data": { "additionalProperties": false, "properties": { "color": { "maxLength": 255, "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "created_by": { "format": "uuid", "type": "string" }, "deleted_at": { "format": "date-time", "type": "string" }, "description": { "type": "string" }, "external_id": { "maxLength": 255, "type": "string" }, "external_source": { "maxLength": 255, "type": "string" }, "id": { "format": "uuid", "type": "string" }, "name": { "maxLength": 255, "type": "string" }, "parent": { "format": "uuid", "type": "string" }, "project": { "format": "uuid", "type": "string" }, "sort_order": { "type": "number" }, "updated_at": { "format": "date-time", "type": "string" }, "updated_by": { "format": "uuid", "type": "string" }, "workspace": { "format": "uuid", "type": "string" } }, "required": [ "color", "name" ], "type": "object" }, "project_id": { "description": "The uuid identifier of the project to create the label in", "type": "string" } }, "required": [ "project_id", "label_data" ], "type": "object" }
ID: y5g9z3v76n