create_cycle
Initiate new project cycles in Plane MCP Server by specifying project ID and cycle details, such as start date, end date, and tracking metrics.
Instructions
Create a new cycle in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycle_data | Yes | The data for creating the cycle | |
project_id | Yes | The uuid identifier of the project to create the cycle in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cycle_data": {
"additionalProperties": false,
"description": "The data for creating the cycle",
"properties": {
"archived_at": {
"format": "date-time",
"type": "string"
},
"backlog_issues": {
"type": "integer"
},
"cancelled_issues": {
"type": "integer"
},
"completed_estimates": {
"type": "number"
},
"completed_issues": {
"type": "integer"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"created_by": {
"format": "uuid",
"type": "string"
},
"deleted_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"end_date": {
"description": "The end date of the cycle of format YYYY-MM-DD",
"format": "date",
"type": "string"
},
"external_id": {
"maxLength": 255,
"type": "string"
},
"external_source": {
"maxLength": 255,
"type": "string"
},
"id": {
"format": "uuid",
"type": "string"
},
"logo_props": {},
"name": {
"maxLength": 255,
"type": "string"
},
"owned_by": {
"format": "uuid",
"type": "string"
},
"progress_snapshot": {},
"project_id": {
"format": "uuid",
"type": "string"
},
"sort_order": {
"type": "number"
},
"start_date": {
"description": "The start date of the cycle of format YYYY-MM-DD",
"format": "date",
"type": "string"
},
"started_estimates": {
"type": "number"
},
"started_issues": {
"type": "integer"
},
"timezone": {},
"total_estimates": {
"type": "number"
},
"total_issues": {
"type": "integer"
},
"unstarted_issues": {
"type": "integer"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"updated_by": {
"format": "uuid",
"type": "string"
},
"version": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "integer"
},
"view_props": {},
"workspace": {
"format": "uuid",
"type": "string"
}
},
"required": [
"name",
"project_id"
],
"type": "object"
},
"project_id": {
"description": "The uuid identifier of the project to create the cycle in",
"type": "string"
}
},
"required": [
"project_id",
"cycle_data"
],
"type": "object"
}