linear_createComment
Add comments to Linear issues by specifying the issue ID and comment text. Supports Markdown formatting for clear, structured communication in project management tasks.
Instructions
Add a comment to an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Text of the comment (Markdown supported) | |
issueId | Yes | ID or identifier of the issue to comment on (e.g., ABC-123) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Text of the comment (Markdown supported)",
"type": "string"
},
"issueId": {
"description": "ID or identifier of the issue to comment on (e.g., ABC-123)",
"type": "string"
}
},
"required": [
"issueId",
"body"
],
"type": "object"
}