add_comment
Use this tool to add comments to tickets in mcptix, specifying author, content, status, and type to enhance ticket tracking and task management.
Instructions
Add a comment to a ticket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | Comment author | agent |
content | Yes | Comment content | |
status | No | Comment status | open |
ticket_id | Yes | Ticket ID | |
type | No | Comment type | comment |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"default": "agent",
"description": "Comment author",
"enum": [
"developer",
"agent"
],
"type": "string"
},
"content": {
"description": "Comment content",
"type": "string"
},
"status": {
"default": "open",
"description": "Comment status",
"enum": [
"open",
"in_progress",
"resolved",
"wont_fix"
],
"type": "string"
},
"ticket_id": {
"description": "Ticket ID",
"type": "string"
},
"type": {
"default": "comment",
"description": "Comment type",
"enum": [
"comment",
"request_changes",
"change_proposal"
],
"type": "string"
}
},
"required": [
"ticket_id",
"content"
],
"type": "object"
}