> ## 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.

# list_presets

> List every preset the user can pass by name, built-in and saved, each with a plain summary.

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

**Behavior:** read-only, idempotent.

## What it does

List every preset the user can pass by name: the built-ins `ai_labs`, `weekday_meals`, `cli_only`, and `daily`, and every name they saved, each with a plain summary of its rules. Pass any `key` as `preset` to create\_card or set\_card\_preset. A deleted name is not listed; cards created from it keep working.

## Inputs

| Field    | Type | Description                   |
| -------- | ---- | ----------------------------- |
| *(none)* |      | This tool takes no arguments. |

## Returns

| Field                  | Type   | Description                                                                                                               |
| ---------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------- |
| `message` *(required)* | string | Human-readable result or guidance for the next step.                                                                      |
| `presets`              | array  | One entry per preset: `key` (the name to pass elsewhere as `preset`), `builtin`, `version` (saved names only), `summary`. |

## Example call

```json theme={null}
{
  "tool": "list_presets",
  "arguments": {}
}
```
