get_alert
Retrieve detailed information about a specific security alert using its unique ID on Panther's MCP Server. Requires 'Read Alerts' permissions to access alert data.
Instructions
Get detailed information about a specific Panther alert by ID
Permissions:{'all_of': ['Read Alerts']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alert_id | Yes | The ID of the alert to fetch |
Input Schema (JSON Schema)
{
"properties": {
"alert_id": {
"description": "The ID of the alert to fetch",
"minLength": 1,
"title": "Alert Id",
"type": "string"
}
},
"required": [
"alert_id"
],
"type": "object"
}