delete_cycle_issue
Remove a specific issue from a project cycle using the Plane MCP Server. Requires project, cycle, and issue IDs to execute the action effectively.
Instructions
Remove an issue from a cycle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycle_id | Yes | The uuid identifier of the cycle containing the issue | |
issue_id | Yes | The uuid identifier of the issue to remove from the cycle | |
project_id | Yes | The uuid identifier of the project containing the cycle |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cycle_id": {
"description": "The uuid identifier of the cycle containing the issue",
"type": "string"
},
"issue_id": {
"description": "The uuid identifier of the issue to remove from the cycle",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id",
"issue_id"
],
"type": "object"
}