linear_add_comment
Add comments to Linear issues to provide updates, context, or feedback using markdown formatting for clear communication within the issue tracking system.
Instructions
Add a comment to a Linear issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Comment text (markdown supported) | |
createAsUser | No | Custom username for the comment creator | |
displayIconUrl | No | Custom avatar URL for the comment creator | |
issueId | Yes | Issue ID to comment on |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Comment text (markdown supported)",
"type": "string"
},
"createAsUser": {
"description": "Custom username for the comment creator",
"type": "string"
},
"displayIconUrl": {
"description": "Custom avatar URL for the comment creator",
"type": "string"
},
"issueId": {
"description": "Issue ID to comment on",
"type": "string"
}
},
"required": [
"issueId",
"body"
],
"type": "object"
}