list_events
Retrieve and filter security events like attacks or blocks by timestamp, action, tag, or IP address for a specific site or corporation using Fastly NGWAF MCP Server integrations.
Instructions
List security events (attacks, blocks, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Filter by action | |
corpName | No | Corporation name (uses context default if not provided) | |
from | No | Unix timestamp start | |
ip | No | Filter by IP address | |
siteName | No | Site name (uses context default if not provided) | |
tag | No | Filter by tag | |
until | No | Unix timestamp end |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Filter by action",
"enum": [
"flagged",
"info"
],
"type": "string"
},
"corpName": {
"description": "Corporation name (uses context default if not provided)",
"type": "string"
},
"from": {
"description": "Unix timestamp start",
"type": "number"
},
"ip": {
"description": "Filter by IP address",
"type": "string"
},
"siteName": {
"description": "Site name (uses context default if not provided)",
"type": "string"
},
"tag": {
"description": "Filter by tag",
"type": "string"
},
"until": {
"description": "Unix timestamp end",
"type": "number"
}
},
"type": "object"
}