mark_inbox_item_as_false_positive
Mark an inbox item as a false positive in RAD Security's MCP server by specifying the item ID and providing a reason, ensuring accurate security alerts in Kubernetes and cloud environments.
Instructions
Mark an inbox item as a false positive with a reason
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inbox_item_id | Yes | ID of the inbox item to mark as false positive | |
reason | Yes | Reason for marking the item as false positive | |
value | No | Whether to mark the item as false positive (true) or not (false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inbox_item_id": {
"description": "ID of the inbox item to mark as false positive",
"type": "string"
},
"reason": {
"description": "Reason for marking the item as false positive",
"type": "string"
},
"value": {
"default": true,
"description": "Whether to mark the item as false positive (true) or not (false)",
"type": "boolean"
}
},
"required": [
"inbox_item_id",
"reason"
],
"type": "object"
}