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

# remove_added_card

> Remove (unenroll) one of the user's added cards.

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

**Behavior:** destructive.

## What it does

Remove (unenroll) one of the user's added cards. Irreversible for that enrollment: any virtual cards created against it are closed first, then the card is unenrolled at the network. ALWAYS confirm with the user before calling. Get ids from list\_added\_cards. The user can add the same card again later (create\_card with restart\_setup: true).

## Inputs

| Field                           | Type   | Description                                                   |
| ------------------------------- | ------ | ------------------------------------------------------------- |
| `attached_card_id` *(required)* | string | The id of the added card to remove (from list\_added\_cards). |

## Returns

| Field                  | Type   | Description                                            |
| ---------------------- | ------ | ------------------------------------------------------ |
| `message` *(required)* | string | Human-readable confirmation or guidance.               |
| `id`                   | string | The id of the removed card.                            |
| `status`               | string | "revoked" on success.                                  |
| `closedCards`          | number | How many virtual cards created against it were closed. |

## Example call

```json theme={null}
{
  "tool": "remove_added_card",
  "arguments": {
    "attached_card_id": "\u2026"
  }
}
```
