> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete account

> MCP tool to delete an account from the Thena platform.

import Admonition from '@theme/Admonition';

### MCP tool: `delete_account`

Deletes an account from the Thena platform. This action is permanent and will remove the account along with its associated data.

<Admonition type="note">
  You must provide the account ID to delete the specific account. This action is irreversible.
</Admonition>

### Example prompt

```prompt theme={null}
Delete account with ID ACC001
```

<Admonition type="info">
  When you use this prompt in a chat with the model (with the MCP tool registered), the model will automatically call the <code>delete\_account</code> tool with the correct arguments.
</Admonition>

### Input parameters

| Name | Type   | Required | Description                                    |
| ---- | ------ | -------- | ---------------------------------------------- |
| id   | string | Yes      | The unique identifier of the account to delete |

### Response fields

The response will be a simple success message indicating the account was deleted.

### Sample response

```json theme={null}
{
  "content": [
    {
      "type": "text",
      "text": "Account deleted successfully"
    }
  ]
}
```

<Admonition type="tip">
  Always pass an object as input, even if empty, to avoid errors when calling the tool directly.
</Admonition>

<Admonition type="warning">
  This tool permanently deletes accounts and their associated data. This action cannot be undone. Ensure you have the correct account ID before proceeding.
</Admonition>

***
