Linear

by tacticlaunch
Verified

linear_createComment

Add a comment to an issue in Linear

Input Schema

NameRequiredDescriptionDefault
bodyYesText of the comment (Markdown supported)
issueIdYesID 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" }