clear_all_tasks
Clear unfinished tasks and reset the task list on mcp-chain-of-thought server. Use this tool to remove all pending tasks, ensuring a clean slate for new tasks.
Instructions
Clear unfinished tasks and reset the task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | Yes | Confirm to delete all unfinished tasks (this operation is irreversible) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"confirm": {
"description": "Confirm to delete all unfinished tasks (this operation is irreversible)",
"type": "boolean"
}
},
"required": [
"confirm"
],
"type": "object"
}