get_scanner_output
Retrieve scanner output for a specific issue occurrence using issue_id and occurrence_id to analyze detailed results on the intruder-mcp server.
Instructions
Get scanner output for a specific occurrence of an issue.
Args:
issue_id: The ID of the issue
occurrence_id: The ID of the occurrence
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ||
occurrence_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"occurrence_id": {
"title": "Occurrence Id",
"type": "integer"
}
},
"required": [
"issue_id",
"occurrence_id"
],
"title": "get_scanner_outputArguments",
"type": "object"
}