list_occurrences
Retrieve and filter all instances of a specific security issue by target addresses, tag names, or snoozed status using Intruder MCP server.
Instructions
List all occurrences for a specific issue with optional filters.
Args:
issue_id: The ID of the issue to list occurrences for
target_addresses: Filter by a list of target addresses
tag_names: Filter by a list of tag names
snoozed: Filter by snoozed status (true or false)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ||
snoozed | No | ||
tag_names | No | ||
target_addresses | No |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"snoozed": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Snoozed"
},
"tag_names": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tag Names"
},
"target_addresses": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Addresses"
}
},
"required": [
"issue_id"
],
"title": "list_occurrencesArguments",
"type": "object"
}