add_alert_comment
Add Markdown-formatted comments to security alerts in Panther MCP Server to provide context, updates, or insights during investigations. Requires 'Manage Alerts' permission.
Instructions
Add a comment to a Panther alert. Comments support Markdown formatting.
Returns: Dict containing: - success: Boolean indicating if the comment was added successfully - comment: Created comment information if successful - message: Error message if unsuccessful
Permissions:{'all_of': ['Manage Alerts']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alert_id | Yes | The ID of the alert to comment on | |
comment | Yes | The comment text to add |
Input Schema (JSON Schema)
{
"properties": {
"alert_id": {
"description": "The ID of the alert to comment on",
"minLength": 1,
"title": "Alert Id",
"type": "string"
},
"comment": {
"description": "The comment text to add",
"minLength": 1,
"title": "Comment",
"type": "string"
}
},
"required": [
"alert_id",
"comment"
],
"type": "object"
}