Get Args Schema For Tool
Last updated
{
"tool": "create_vulnerability",
"schema": {
"type": "object",
"properties": {
"project_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"writeup_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"priority": {
"enum": [
"Critical",
"High",
"Medium",
"Low",
"Info"
]
},
"steps_to_reproduce": {
"type": "string"
},
"custom_fields": {
"type": "array"
}
},
"required": [
"project_id",
"writeup_id"
],
"additionalProperties": false
},
"richtext_format": {
"description": "Rich-text fields accept AttackForge richtext markup. Embedded files are referenced using {{{filename.png}}} placeholders.",
"example": "<p>Run the tool and observe the result:</p><p>{{{evidence.png}}}</p>"
}
}