Get Security Findings
get_security_findingsList security findings for the active project, optionally filtered by status, severity, scanner, or a free-text search. Findings are ordered by severity (most severe first). Pass findingId to get one finding in full, including the raw evidence the scanner captured (request and response) — that blob is omitted from the list to keep it small. Requires project context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of findings to skip (for pagination, default 0) | |
| take | No | Number of findings to return (default 50, max 100) | |
| search | No | Free-text search over finding title/description | |
| status | No | Filter by status: 'open', 'inProgress', 'fixed', 'falsePositive', 'acceptedRisk', 'duplicate' (omit for all) | |
| severity | No | Filter by severity: 'info', 'low', 'medium', 'high', 'critical' (omit for all) | |
| findingId | No | Public Id (Guid) of a single finding. When given, the filters are ignored. | |
| scannerId | No | Filter by scanner id (omit for all scanners) |