Plane MCP Server

Official

delete_issue_type

Remove a specific issue type from a project in Plane MCP Server by providing the project ID and issue type ID. Simplifies issue type management in project workflows.

Instructions

Delete an issue type

Input Schema

NameRequiredDescriptionDefault
project_idYesThe uuid identifier of the project containing the issue type
type_idYesThe uuid identifier of the issue type to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "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 delete", "type": "string" } }, "required": [ "project_id", "type_id" ], "type": "object" }
ID: y5g9z3v76n