linear_getInitiatives
Retrieve a list of initiatives from Linear with options to include archived items and limit results, enabling efficient project tracking and management.
Instructions
Get a list of all initiatives from Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeArchived | No | Include archived initiatives in the results | |
limit | No | Maximum number of initiatives to return |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"default": false,
"description": "Include archived initiatives in the results",
"type": "boolean"
},
"limit": {
"default": 50,
"description": "Maximum number of initiatives to return",
"type": "number"
}
},
"type": "object"
}