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

# delete_preset

> Retire a saved preset name. Cards already issued keep their rules.

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

## What it does

Retire a saved name. Cards already issued keep their rules; the name stops appearing in list\_presets and no longer works as `preset`. Built-in names are refused, because there is nothing to delete. The call is also refused while the name is the account default or an app's standing preset; clear that with set\_card\_preset first.

Over a connected app's own credential this returns `read_only`. The account owner deletes saved names from the CLI or the dashboard.

## Inputs

| Field               | Type   | Description                      |
| ------------------- | ------ | -------------------------------- |
| `name` *(required)* | string | The saved preset name to delete. |

## Returns

| Field                  | Type    | Description                                          |
| ---------------------- | ------- | ---------------------------------------------------- |
| `message` *(required)* | string  | Human-readable result or guidance for the next step. |
| `deleted`              | boolean | true when the name was retired.                      |

## Example call

```json theme={null}
{
  "tool": "delete_preset",
  "arguments": {
    "name": "lunch"
  }
}
```
