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

# buy_remove_from_cart

> Remove a product (by id) from the cart at a linked merchant.

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

<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 product (by id) from the cart at a linked merchant.

## Inputs

| Field                     | Type   | Description |
| ------------------------- | ------ | ----------- |
| `merchant` *(required)*   | string |             |
| `product_id` *(required)* | string |             |

## Returns

None.

## Example call

```json theme={null}
{
  "tool": "buy_remove_from_cart",
  "arguments": {
    "merchant": "\u2026",
    "product_id": "\u2026"
  }
}
```
