linear_get_issue_with_comments
Fetch detailed Linear issue data including all comments and complete information using the provided issue URL or identifier for streamlined issue tracking and collaboration.
Instructions
Fetch a Linear issue with all its comments and complete information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue | Yes | Linear issue URL or identifier (e.g., 'ENG-123' or 'https://linear.app/team/issue/ENG-123/issue-title') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issue": {
"description": "Linear issue URL or identifier (e.g., 'ENG-123' or 'https://linear.app/team/issue/ENG-123/issue-title')",
"type": "string"
}
},
"required": [
"issue"
],
"type": "object"
}