create-issue-comment
Add comments to issues in Plane projects to provide updates, feedback, or additional context for team collaboration and issue tracking.
Instructions
Create a new comment on an issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access | No | Comment visibility: INTERNAL (default) or EXTERNAL | |
comment | Yes | The comment text (will be converted to HTML) | |
issue_id | Yes | ID of the issue to comment on | |
project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"access": {
"description": "Comment visibility: INTERNAL (default) or EXTERNAL",
"enum": [
"INTERNAL",
"EXTERNAL"
],
"type": "string"
},
"comment": {
"description": "The comment text (will be converted to HTML)",
"type": "string"
},
"issue_id": {
"description": "ID of the issue to comment on",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"comment"
],
"type": "object"
}