Plane MCP Server

Official

delete_cycle_issue

Remove a specific issue from a project cycle in Plane MCP Server by providing project, cycle, and issue identifiers.

Instructions

Remove an issue from a cycle

Input Schema

NameRequiredDescriptionDefault
cycle_idYesThe uuid identifier of the cycle containing the issue
issue_idYesThe uuid identifier of the issue to remove from the cycle
project_idYesThe 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" }
ID: y5g9z3v76n