linear_search_issues
Search and filter issues in Linear's issue tracking system using text queries, archived status, and result limits to find specific project items.
Instructions
Search issues in Linear with flexible filtering
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeArchived | No | Include archived issues | |
| limit | No | Maximum number of issues to return (default: 10) | |
| query | No | Text to search in title/description |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"description": "Include archived issues",
"type": "boolean"
},
"limit": {
"description": "Maximum number of issues to return (default: 10)",
"type": "number"
},
"query": {
"description": "Text to search in title/description",
"type": "string"
}
},
"type": "object"
}