Plane MCP Server

Official

create_issue_type

Define and add new issue types to a project in Plane MCP Server by specifying essential details like name, description, and project ID to streamline project management workflows.

Instructions

Create a new issue type in a project

Input Schema

NameRequiredDescriptionDefault
issue_type_dataYes
project_idYesThe uuid identifier of the project to create the issue type in

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_type_data": { "additionalProperties": false, "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" } }, "required": [ "description", "name" ], "type": "object" }, "project_id": { "description": "The uuid identifier of the project to create the issue type in", "type": "string" } }, "required": [ "project_id", "issue_type_data" ], "type": "object" }
ID: y5g9z3v76n