adv_mark_false_positive
Mark a finding as a false positive in the .adversary.json file by specifying the finding UUID, reason, and marked-by details to manage security insights effectively.
Instructions
Mark a finding as a false positive in the .adversary.json file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
finding_uuid | Yes | UUID of the finding to mark as false positive | |
marked_by | No | Name of the person marking this as false positive | MCP User |
path | No | Path to directory containing .adversary.json or direct path to .adversary.json file | . |
reason | No | Reason for marking as false positive | Manually marked via MCP tool |
Input Schema (JSON Schema)
{
"properties": {
"finding_uuid": {
"description": "UUID of the finding to mark as false positive",
"type": "string"
},
"marked_by": {
"default": "MCP User",
"description": "Name of the person marking this as false positive",
"type": "string"
},
"path": {
"default": ".",
"description": "Path to directory containing .adversary.json or direct path to .adversary.json file",
"type": "string"
},
"reason": {
"default": "Manually marked via MCP tool",
"description": "Reason for marking as false positive",
"type": "string"
}
},
"required": [
"finding_uuid"
],
"type": "object"
}