Plane MCP Server

Official

add_cycle_issues

Add specific issues to a cycle in Plane's project management system by providing the project ID, cycle ID, and issue UUIDs.

Instructions

Add issues to a cycle

Input Schema

NameRequiredDescriptionDefault
cycle_idYesThe uuid identifier of the cycle to add issues to
issuesYesArray of issue UUIDs to add to 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 to add issues to", "type": "string" }, "issues": { "description": "Array of issue UUIDs to add to the cycle", "items": { "type": "string" }, "type": "array" }, "project_id": { "description": "The uuid identifier of the project containing the cycle", "type": "string" } }, "required": [ "project_id", "cycle_id", "issues" ], "type": "object" }
ID: y5g9z3v76n