list_cycles
Retrieve all cycles for a specific project by providing the project's UUID identifier. Facilitates project management through Plane MCP Server's standardized API.
Instructions
Get all cycles for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to get cycles for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project to get cycles for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}