get_report_file_info
Retrieve detailed PPC file information for a specific endpoint and task using the Binalyze AIR MCP Server, facilitating digital forensics and incident response analysis.
Instructions
Get information about a PPC file for a specific endpoint and task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpointId | Yes | The ID of the endpoint to get report file information for | |
taskId | Yes | The ID of the task to get report file information for |
Input Schema (JSON Schema)
{
"properties": {
"endpointId": {
"description": "The ID of the endpoint to get report file information for",
"type": "string"
},
"taskId": {
"description": "The ID of the task to get report file information for",
"type": "string"
}
},
"required": [
"endpointId",
"taskId"
],
"type": "object"
}