Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/modules/mcp/tools_alerts.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func registerAlerts(m *Module) {

type alertsUpdateStatusInput struct {
AlertIDs []string `json:"alert_ids" jsonschema:"OpenSearch _id values of the alerts to update"`
Status int `json:"status" jsonschema:"Target status code (UTMStack convention: 0=open 1=in-review 2=closed)"`
Status int `json:"status" jsonschema:"Target status code (UTMStack convention: 1=automatic-review, 2=open, 3=in-review, 5=completed/closed)"`
StatusObservation string `json:"status_observation,omitempty" jsonschema:"Optional analyst note attached to the status change"`
AddFalsePositiveTag bool `json:"add_false_positive_tag,omitempty" jsonschema:"If true, also apply the FALSE_POSITIVE tag (used when closing as FP)"`
}
Expand Down
Loading