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

# Plans

> Free, Basic, and Pro limits

Your plan sets how many cards you can create each month and the maximum amount per card.

|                 | **Free**     | **Basic** | **Pro**   |
| --------------- | ------------ | --------- | --------- |
| Price           | \$0          | \$15/mo   | \$100/mo  |
| Cards per month | 5            | 15        | 50        |
| Max per card    | \$50         | \$500     | \$1,000   |
| Shopping orders | 1 (lifetime) | Unlimited | Unlimited |

Everyone starts on **Free**. [Test cards](/personal/concepts/test-mode) (from an organization's sandbox integration) don't count toward these limits or your monthly usage.

## View your plan

<Tabs>
  <Tab title="CLI">
    ```bash theme={null}
    agent-cards plan
    ```
  </Tab>

  <Tab title="MCP">
    Call `get_plan` to see your current plan, per-card cap, cards used and remaining this month, and renewal status.
  </Tab>
</Tabs>

## Upgrade

<Tabs>
  <Tab title="CLI">
    ```bash theme={null}
    agent-cards plan upgrade basic    # $15/mo
    agent-cards plan upgrade pro      # $100/mo
    ```
  </Tab>

  <Tab title="MCP">
    Call `upgrade_plan` — it returns a Stripe Checkout URL. Complete payment in your browser and the plan updates automatically; confirm with `get_plan`.
  </Tab>
</Tabs>

## Cancel

Cancel from the CLI with `agent-cards plan cancel`, or via the `cancel_plan` MCP tool. You revert to Free at the end of the billing period.

## When you hit a limit

Card creation returns a clear error when you exceed your plan:

* **`amount_exceeds_limit`** — the requested amount is above your per-card cap. Lower the amount or upgrade.
* **`card_limit_reached`** — you've used your monthly card quota. Upgrade or wait until next month.

Check `get_plan` (or `agent-cards plan`) to see exactly where you stand. Need a higher limit than Pro? [Contact support](/personal/support).
