delete_task_by_id
Remove a specific task by its unique ID to manage tasks efficiently within the Binalyze AIR MCP Server, ensuring streamlined digital forensics and incident response workflows.
Instructions
Delete a specific task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the task to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the task to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}