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

> Remove a saved payment method.

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

**Behavior:** destructive.

<Note>Not in the default `tools/list`. It is still callable by exact name, and appears when the client sends the `x-expert-tools: 1` header.</Note>

## What it does

Remove a saved payment method. This detaches it permanently. Use list\_payment\_methods or the list from setup\_payment\_method status to find the payment\_method\_id.

## Inputs

| Field                            | Type   | Description                                    |
| -------------------------------- | ------ | ---------------------------------------------- |
| `payment_method_id` *(required)* | string | The payment method ID to remove (e.g. pm\_xxx) |

## Returns

| Field                  | Type              | Description                                            |
| ---------------------- | ----------------- | ------------------------------------------------------ |
| `message` *(required)* | string            | Human-readable summary of the result.                  |
| `paymentMethodId`      | string            | The payment method ID that was removed (e.g. pm\_xxx). |
| `status`               | string: `removed` | Outcome of the operation.                              |

## Example call

```json theme={null}
{
  "tool": "remove_payment_method",
  "arguments": {
    "payment_method_id": "\u2026"
  }
}
```
