delete_label
Remove a specific label from a project in Plane MCP Server by providing the project and label UUID identifiers.
Instructions
Delete a label
Input Schema
Name | Required | Description | Default |
---|---|---|---|
label_id | Yes | The uuid identifier of the label to delete | |
project_id | Yes | The uuid identifier of the project containing the label |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"label_id": {
"description": "The uuid identifier of the label to delete",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the label",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}