linear_get_labels
Retrieve labels from Linear's issue tracking system, with options to filter by team, include archived items, and set result limits.
Instructions
Get labels from Linear, optionally filtered by team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeArchived | No | Whether to include archived labels | |
limit | No | Maximum number of labels to return | |
teamId | No | Filter labels by team ID |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"description": "Whether to include archived labels",
"type": "boolean"
},
"limit": {
"description": "Maximum number of labels to return",
"type": "number"
},
"teamId": {
"description": "Filter labels by team ID",
"type": "string"
}
},
"type": "object"
}