create_issue_type
Create a new issue type in a specified project using Plane MCP Server, enabling efficient project management with customizable issue categories.
Instructions
Create a new issue type in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_type_data | Yes | ||
project_id | Yes | The 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"
}