search_findings
Query and filter findings in vulnerability management using text, status, severity, and product name, with pagination support for efficient results navigation.
Instructions
Search for findings using a text query with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
product_name | No | ||
query | Yes | ||
severity | No | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"product_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Product Name"
},
"query": {
"title": "Query",
"type": "string"
},
"severity": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Severity"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"required": [
"query"
],
"title": "search_findingsArguments",
"type": "object"
}