list_cycle_issues
Retrieve all issues associated with a specific cycle in a project by providing the project and cycle identifiers through the Plane MCP Server. Simplifies issue tracking and management.
Instructions
Get all issues for a specific cycle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycle_id | Yes | The uuid identifier of the cycle to get issues for | |
project_id | Yes | The 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 get issues for",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id"
],
"type": "object"
}