threads_update
ActiveTool of io.github.saloprj/dialogbrain
✏️ Update a conversation thread: rename it, add notes/description, or move to a folder. When to use: - User wants to rename a chat or group - User wants to add notes/context about a conversation - User wants to organize threads into folders For DM threads, renaming also updates the linked contact's display name by default. Requires thread_id from threads.list.
Parameters schema
{
"type": "object",
"required": [
"thread_id"
],
"properties": {
"title": {
"type": "string",
"description": "New title for the thread (max 255 chars)"
},
"folder_id": {
"type": "integer",
"description": "Move thread to this folder (null removes from folder)"
},
"thread_id": {
"type": "string",
"description": "Thread ID from threads.list"
},
"description": {
"type": "string",
"description": "AI context / notes for this thread. Empty string clears description."
},
"update_contact": {
"type": "boolean",
"default": true,
"description": "For DM threads, also rename the linked contact (default: true)"
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries