usefulapi

Recharge MCP server. Read subscriptions, customers, charges, orders; skip charges, cancel or activate subscriptions.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://recharge.usefulapi.io/mcp
  3. Authenticate with Recharge when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "recharge": {
      "url": "https://recharge.usefulapi.io/mcp"
    }
  }
}
live17 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 17

ToolTypeWhat it does
recharge_get_storeread
Get store
Get the Recharge store/shop info — name, domain, currency, timezone, and account settings. Recharge REST: GET /store.
recharge_list_subscriptionsread
List subscriptions
List subscriptions with optional filters (customer, address, status, ids, created/updated date ranges) and sorting. Returns { subscriptions }. Cursor-paginated. Recharge REST: GET /subscriptions.
recharge_get_subscriptionread
Get subscription
Get a single subscription by id, including product, quantity, price, charge interval, and next charge date. Recharge REST: GET /subscriptions/{id}.
recharge_list_customersread
List customers
List customers with optional filters (email, ids, created/updated date ranges) and sorting. Returns { customers }. Cursor-paginated. Recharge REST: GET /customers.
recharge_get_customerread
Get customer
Get a single customer by id, including contact details, Shopify customer id, and subscription/charge counts. Recharge REST: GET /customers/{id}.
recharge_list_chargesread
List charges
List charges with optional filters (customer, address, status, ids, purchase item, scheduled/created/updated date ranges) and sorting. Returns { charges }. Cursor-paginated. Recharge REST: GET /charges.
recharge_get_chargeread
Get charge
Get a single charge by id, including line items, totals, status, scheduled date, and customer/address. Recharge REST: GET /charges/{id}.
recharge_list_ordersread
List orders
List orders with optional filters (customer, address, subscription, status, ids, created/updated/scheduled date ranges) and sorting. Returns { orders }. Cursor-paginated. Recharge REST: GET /orders.
recharge_get_orderread
Get order
Get a single order by id, including line items, totals, status, and the charge/subscription it came from. Recharge REST: GET /orders/{id}.
recharge_list_onetimesread
List one-times
List one-time (non-recurring) line items with optional filters (customer, address, created/updated date ranges). Returns { onetimes }. Cursor-paginated. Recharge REST: GET /onetimes.
recharge_list_productsread
List products
List Recharge products (subscription rules / discounts per product) with optional id filter. Returns { products }. Cursor-paginated. Recharge REST: GET /products.
recharge_list_addressesread
List addresses
List customer addresses with optional filters (customer, ids, created/updated date ranges). Returns { addresses }. Cursor-paginated. Recharge REST: GET /addresses.
recharge_skip_chargewrite
Skip charge
Skips a scheduled charge — prevents it from processing on its scheduled date. Modifies live billing data. Some stores require the specific line items via purchase_item_ids. Recharge REST: POST /charges/{id}/skip.
recharge_cancel_subscriptionwrite
Cancel subscription
Cancels an active subscription — stops all future charges. Modifies live data. A cancellation_reason is required. Recharge REST: POST /subscriptions/{id}/cancel.
recharge_activate_subscriptionwrite
Activate subscription
Reactivates a cancelled subscription — resumes future charges. Modifies live data. Recharge REST: POST /subscriptions/{id}/activate.
recharge_usage_statusmeta
Usage status (free-tier meter)
Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter.
recharge_upgrademeta
Upgrade to Pro (unlimited)
Subscribe to the Pro plan for UNLIMITED Recharge tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Proper user$9/mo · $90/yrUnlimited

This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.