get_issue
Retrieve specific issue details from Linear's project management system using the issue ID to access task information, status, and related data.
Instructions
A tool that gets an issue from Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | The ID of the issue to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "The ID of the issue to retrieve",
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}