delete_conversation
Remove conversations from the Cuti-E admin platform to manage data and maintain organization. Specify the conversation ID to delete specific chat histories.
Instructions
Close/delete a conversation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_id | Yes | The conversation ID to delete |
Implementation Reference
- index.js:442-445 (handler)The handler implementation for the delete_conversation tool, which executes a DELETE request against the API.
case "delete_conversation": { result = await apiRequest("DELETE", `/v1/conversations/${args.conversation_id}`); break; } - index.js:203-216 (schema)The registration and schema definition for the delete_conversation tool.
{ name: "delete_conversation", description: "Close/delete a conversation.", inputSchema: { type: "object", properties: { conversation_id: { type: "string", description: "The conversation ID to delete", }, }, required: ["conversation_id"], },