linear_getProjectIssues
Retrieve all issues linked to a Linear project by specifying the project ID and optional limit, enabling efficient project management and issue tracking.
Instructions
Get all issues associated with a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of issues to return (default: 25) | |
projectId | Yes | ID of the project to get issues for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of issues to return (default: 25)",
"type": "number"
},
"projectId": {
"description": "ID of the project to get issues for",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}