clear_thoughts
Remove recorded thoughts from the MCP Agile Flow server, optionally filtered by category. Helps manage and streamline AI-assisted agile development workflows.
Instructions
Clear recorded thoughts.
This tool removes previously recorded thoughts, optionally filtered by category. If no category is specified, all thoughts will be cleared.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter to clear thoughts from a specific category only |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter to clear thoughts from a specific category only",
"title": "Category"
}
},
"title": "clear_thoughtsArguments",
"type": "object"
}