Plane MCP Server

Official

update_issue_type

Modify the details of an existing issue type within a specified project using its unique identifier. Adjust fields such as name, description, active status, and other properties to maintain accurate project management records.

Instructions

Update an existing issue type

Input Schema

NameRequiredDescriptionDefault
issue_type_dataYesThe fields to update on the issue type
project_idYesThe uuid identifier of the project containing the issue type
type_idYesThe uuid identifier of the issue type to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_type_data": { "additionalProperties": false, "description": "The fields to update on the issue type", "properties": { "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" }, "is_active": { "type": "boolean" }, "is_default": { "type": "boolean" }, "level": { "type": "integer" }, "logo_props": {}, "name": { "maxLength": 255, "type": "string" }, "project_ids": { "items": { "format": "uuid", "type": "string" }, "type": "array" }, "updated_at": { "format": "date-time", "type": "string" }, "updated_by": { "format": "uuid", "type": "string" }, "workspace": { "format": "uuid", "type": "string" } }, "type": "object" }, "project_id": { "description": "The uuid identifier of the project containing the issue type", "type": "string" }, "type_id": { "description": "The uuid identifier of the issue type to update", "type": "string" } }, "required": [ "project_id", "type_id", "issue_type_data" ], "type": "object" }
ID: y5g9z3v76n