Linear MCP Server

create_comment

Create a new comment on a Linear issue

Input Schema

NameRequiredDescriptionDefault
bodyYesContent of the comment (markdown supported)
issueIdYesID or key of the issue to comment on

Input Schema (JSON Schema)

{ "properties": { "body": { "description": "Content of the comment (markdown supported)", "type": "string" }, "issueId": { "description": "ID or key of the issue to comment on", "type": "string" } }, "required": [ "issueId", "body" ], "type": "object" }