linear_get_projects
Retrieve and filter project data from Linear's issue tracking system to monitor progress, organize work, and manage team initiatives.
Instructions
Get projects in the organization
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeArchived | No | Include archived projects | |
| limit | No | Maximum number of projects to return (default: 50) | |
| status | No | Filter by project status (e.g., 'completed', 'in progress') | |
| teamId | No | Filter projects by team ID |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"description": "Include archived projects",
"type": "boolean"
},
"limit": {
"description": "Maximum number of projects to return (default: 50)",
"type": "number"
},
"status": {
"description": "Filter by project status (e.g., 'completed', 'in progress')",
"type": "string"
},
"teamId": {
"description": "Filter projects by team ID",
"type": "string"
}
},
"type": "object"
}