getAlertDetails
Retrieve detailed information about a specific alert by its ID using the OpenSearch MCP Server, enabling precise analysis and response to security events.
Instructions
Get detailed information about a specific alert by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The alert ID | |
index | No | Index pattern | wazuh-alerts-* |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The alert ID",
"type": "string"
},
"index": {
"default": "wazuh-alerts-*",
"description": "Index pattern",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}