update_issue_type
Modify an existing issue type by updating its metadata, including name, description, and status, within a specified project using the Plane MCP Server.
Instructions
Update an existing issue type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_type_data | Yes | The fields to update on the issue type | |
project_id | Yes | The uuid identifier of the project containing the issue type | |
type_id | Yes | The 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"
}