linear_get_project_issues
Retrieve issues from a Linear project by specifying the project ID, with options to filter by status, priority, include archived issues, and set a result limit.
Instructions
Get issues for a specific project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeArchived | No | Include archived issues | |
| limit | No | Maximum number of issues to return (default: 50) | |
| priority | No | Filter by priority level (0-4), where 0=no priority, 1=urgent, 4=low | |
| projectId | Yes | Project ID to get issues for | |
| status | No | Filter by issue status name |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"description": "Include archived issues",
"type": "boolean"
},
"limit": {
"description": "Maximum number of issues to return (default: 50)",
"type": "number"
},
"priority": {
"description": "Filter by priority level (0-4), where 0=no priority, 1=urgent, 4=low",
"type": "number"
},
"projectId": {
"description": "Project ID to get issues for",
"type": "string"
},
"status": {
"description": "Filter by issue status name",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}