Plane MCP Server

Official

transfer_cycle_issues

Move issues between cycles within a project using the Plane MCP Server. Specify the project, source cycle, and target cycle to streamline issue management.

Instructions

Transfer issues from one cycle to another

Input Schema

NameRequiredDescriptionDefault
cycle_idYesThe uuid identifier of the source cycle
new_cycle_idYesThe uuid identifier of the target 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 source cycle", "type": "string" }, "new_cycle_id": { "description": "The uuid identifier of the target cycle", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the cycle", "type": "string" } }, "required": [ "project_id", "cycle_id", "new_cycle_id" ], "type": "object" }
ID: y5g9z3v76n