get_project
Retrieve comprehensive details of a Linear project, including team, lead, issues, and members. Configure options to include comments, set issue/ member limits, and activate debug mode for diagnostics.
Instructions
Get detailed information about a Linear project including team, lead, issues, and members. Use this to see comprehensive details of a specific project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
debug | No | Debug mode to show extra diagnostics | |
includeComments | No | Whether to include comments on issues in the project | |
includeIssues | No | Whether to include issues in the project details | |
includeMembers | No | Whether to include member details in the project | |
limit | No | Maximum number of issues/members to include in details | |
projectId | Yes | The ID of the Linear project to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"debug": {
"default": false,
"description": "Debug mode to show extra diagnostics",
"type": "boolean"
},
"includeComments": {
"default": false,
"description": "Whether to include comments on issues in the project",
"type": "boolean"
},
"includeIssues": {
"default": true,
"description": "Whether to include issues in the project details",
"type": "boolean"
},
"includeMembers": {
"default": true,
"description": "Whether to include member details in the project",
"type": "boolean"
},
"limit": {
"default": 10,
"description": "Maximum number of issues/members to include in details",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"projectId": {
"description": "The ID of the Linear project to retrieve",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}