get_issue
Retrieve detailed information about a Linear issue, including comments, using the issue ID. Designed to integrate with the Linear MCP Server for efficient issue tracking and management.
Instructions
Get detailed information about a specific Linear issue (also called a ticket), including comments if requested.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
debug | No | ||
includeComments | No | ||
issueId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"debug": {
"default": false,
"type": "boolean"
},
"includeComments": {
"default": true,
"type": "boolean"
},
"issueId": {
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}