linear_getCycles
Retrieve a list of cycles from Linear, optionally filtering by team and limiting the number of results. Ideal for project tracking and cycle management.
Instructions
Get a list of all cycles
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of cycles to return (default: 25) | |
teamId | No | ID of the team to get cycles for (optional) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of cycles to return (default: 25)",
"type": "number"
},
"teamId": {
"description": "ID of the team to get cycles for (optional)",
"type": "string"
}
},
"type": "object"
}