delete_issue_type
Remove an issue type from a project using its unique identifier. This tool helps streamline project management by decluttering outdated or unused issue types in the Plane MCP Server.
Instructions
Delete an issue type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The uuid identifier of the project containing the issue type | |
| type_id | Yes | The 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"
}