delete_member_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 member chat (DM or group). Every participant loses access; message history goes with it. Prefer archive_member_chat for "hide from the active list but keep the history" — that's reversible.
Input
| Property | Type | Required | Description |
|---|---|---|---|
chatId | string | yes | UUID of the member chat. |
JSON Schema
{
"type": "object",
"properties": {
"chatId": {
"type": "string",
"description": "UUID of the member chat."
}
},
"required": [
"chatId"
],
"additionalProperties": false
}