threads_delete
ActiveTool of io.github.saloprj/dialogbrain
๐๏ธ PERMANENTLY delete conversation thread(s) and their messages + user-facing state (tags, assignments, drafts, reminders, RAG chunks). Destructive and NOT undoable โ requires confirm=true. Pass thread_id for one, or thread_ids for a bulk delete. Kept intentionally: call history (voice_sessions), usage/billing, traces, and outreach dedup are NOT removed. Note: for a live synced channel (Telegram/WhatsApp) this clears the LOCAL copy; a new inbound can re-create the thread on next sync. For livechat/voice/test/duel threads it's effectively permanent.
Parameters schema
{
"type": "object",
"required": [
"confirm"
],
"properties": {
"confirm": {
"type": "boolean",
"description": "Must be true to actually delete โ a safety gate for this destructive action."
},
"thread_id": {
"type": "integer",
"description": "A single thread ID to delete. Use this OR thread_ids."
},
"thread_ids": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Multiple thread IDs to delete in one call (bulk). Use this OR thread_id."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries