feat(tasks): add clear_list tool (v0.11.6)

Deletes all tasks in a list within a single authenticated session,
avoiding N×(login+logout) overhead — Login once, N×delete, logout once.
Supports only_open=True to keep completed tasks.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-17 13:35:25 +02:00
parent 3f20b6eda3
commit 343e8eeb58
6 changed files with 79 additions and 6 deletions
+6
View File
@@ -62,6 +62,12 @@ POST /api/log2out → Session invalidieren
Credentials (E-Mail + Passwort) werden einmalig via `mcp-familywall setup`
im OS Keyring gespeichert (Keys: `email`, `password`).
### Performance-Hinweis: Bulk-Operationen
Bulk-Operationen (z.B. alle Tasks einer Liste löschen) bündeln mehrere Calls
in einer einzigen Session: Login → Call1 → Call2 → ... → CallN → Logout.
Das spart N1 Login/Logout-Roundtrips gegenüber N separaten Tool-Aufrufen.
## Fehlerbehandlung
### Silent-Fail Warnung