create_comment
Add comments to Linear issues to provide updates, share information, or collaborate with team members on project tasks.
Instructions
A tool that creates a comment on an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | The comment to send to the issue | |
issueId | Yes | The ID of the issue to send a comment to |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "The comment to send to the issue",
"type": "string"
},
"issueId": {
"description": "The ID of the issue to send a comment to",
"type": "string"
}
},
"required": [
"issueId",
"comment"
],
"type": "object"
}