Plane MCP Server

Official
by makeplane

update_label

Modify existing label details, including color, name, description, and more, within a specified project using the Plane MCP Server's standardized API for project management.

Instructions

Update an existing label

Input Schema

NameRequiredDescriptionDefault
label_dataYesThe fields to update on the label
label_idYesThe uuid identifier of the label to update
project_idYesThe uuid identifier of the project containing the label

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "label_data": { "additionalProperties": false, "description": "The fields to update on the label", "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" } }, "type": "object" }, "label_id": { "description": "The uuid identifier of the label to update", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the label", "type": "string" } }, "required": [ "project_id", "label_id", "label_data" ], "type": "object" }
ID: y5g9z3v76n