get_case_activities
Retrieve activity history for a specific case by its ID using the MCP server, enabling structured access to digital forensics and incident response data.
Instructions
Get activity history for a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the case to retrieve activities for |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the case to retrieve activities for",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}