Nurama Developers

delete_chat

DESTRUCTIVE — confirm with the user before calling.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

DESTRUCTIVE — confirm with the user before calling. Restate the target (id + a human descriptor) and wait for explicit approval; do not invoke from inferred intent. No undo. Delete a topic chat (a project chat or asset chat). All messages, attachments, summaries, and follower state go with it. For member chats / DMs use delete_member_chat instead. Auto-created topic chats sometimes re-spawn — deleting them is rarely the right move; consider update_chat_subject first.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the topic chat.

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the topic chat."
    }
  },
  "required": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page