recharge
Server Details
Read subscriptions, customers, charges, orders; skip charges, cancel or activate subscriptions.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- m190/usefulapi-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
15 toolsrecharge_activate_subscriptionActivate subscriptionDestructiveInspect
REACTIVATES a cancelled subscription — resumes future charges. This MODIFIES live data. Recharge REST: POST /subscriptions/{id}/activate (no body). Returns { subscription }.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Subscription id to reactivate. |
recharge_cancel_subscriptionCancel subscriptionDestructiveInspect
CANCELS an active subscription — stops all future charges. This MODIFIES live data. A cancellation_reason is required. Recharge REST: POST /subscriptions/{id}/cancel with JSON body { cancellation_reason, cancellation_reason_comments? }. Returns { subscription }.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Subscription id to cancel. | |
| cancellation_reason | Yes | Reason for cancelling (required by Recharge). | |
| cancellation_reason_comments | No | Optional free-text detail about the cancellation. |
recharge_get_chargeGet chargeRead-onlyInspect
Get a single charge by id, including line items, totals, status, scheduled date, and customer/address. Recharge REST: GET /charges/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Charge id. |
recharge_get_customerGet customerRead-onlyInspect
Get a single customer by id, including contact details, Shopify customer id, and subscription/charge counts. Recharge REST: GET /customers/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Customer id. |
recharge_get_orderGet orderRead-onlyInspect
Get a single order by id, including line items, totals, status, and the charge/subscription it came from. Recharge REST: GET /orders/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Order id. |
recharge_get_storeGet storeRead-onlyInspect
Get the Recharge store/shop info — name, domain, currency, timezone, and account settings. Recharge REST: GET /store.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
recharge_get_subscriptionGet subscriptionRead-onlyInspect
Get a single subscription by id, including product, quantity, price, charge interval, and next charge date. Recharge REST: GET /subscriptions/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Subscription id. |
recharge_list_addressesList addressesRead-onlyInspect
List customer addresses with optional filters (customer, ids, created/updated date ranges). Returns { addresses }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /addresses.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of address ids to fetch. | |
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to addresses created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to addresses created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to addresses updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to addresses updated on/after this date (ISO 8601). |
recharge_list_chargesList chargesRead-onlyInspect
List charges with optional filters (customer, address, status, ids, purchase item, scheduled/created/updated date ranges) and sorting. Returns { charges }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /charges.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of charge ids to fetch. | |
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| status | No | Filter by charge status: success | queued | error | refunded | partially_refunded | skipped | pending_manual_payment | pending. | |
| sort_by | No | Sort order: id-asc | id-desc | updated_at-asc | updated_at-desc | scheduled_at-asc | scheduled_at-desc. | |
| address_id | No | Filter by address id. | |
| customer_id | No | Filter by customer id. | |
| scheduled_at | No | Filter to charges scheduled on this date (ISO 8601). | |
| created_at_max | No | Filter to charges created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to charges created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to charges updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to charges updated on/after this date (ISO 8601). | |
| purchase_item_id | No | Filter to charges containing this purchase item (subscription/onetime line item) id. | |
| scheduled_at_max | No | Filter to charges scheduled on/before this date (ISO 8601). | |
| scheduled_at_min | No | Filter to charges scheduled on/after this date (ISO 8601). |
recharge_list_customersList customersRead-onlyInspect
List customers with optional filters (email, ids, created/updated date ranges) and sorting. Returns { customers }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /customers.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of customer ids to fetch. | |
| No | Filter by customer email. | ||
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| sort_by | No | Sort order: id-asc | id-desc | created_at-asc | created_at-desc | updated_at-asc | updated_at-desc. | |
| created_at_max | No | Filter to customers created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to customers created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to customers updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to customers updated on/after this date (ISO 8601). |
recharge_list_onetimesList one-timesRead-onlyInspect
List one-time (non-recurring) line items with optional filters (customer, address, created/updated date ranges). Returns { onetimes }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /onetimes.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| address_id | No | Filter by address id. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to one-times created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to one-times created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to one-times updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to one-times updated on/after this date (ISO 8601). |
recharge_list_ordersList ordersRead-onlyInspect
List orders with optional filters (customer, address, subscription, status, ids, created/updated/scheduled date ranges) and sorting. Returns { orders }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /orders.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of order ids to fetch. | |
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| status | No | Filter by order status, e.g. success | queued | error | refunded | skipped | cancelled. | |
| sort_by | No | Sort order: id-asc | id-desc | created_at-asc | created_at-desc | updated_at-asc | updated_at-desc. | |
| address_id | No | Filter by address id. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to orders created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to orders created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to orders updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to orders updated on/after this date (ISO 8601). | |
| subscription_id | No | Filter by subscription id. | |
| scheduled_at_max | No | Filter to orders scheduled on/before this date (ISO 8601). | |
| scheduled_at_min | No | Filter to orders scheduled on/after this date (ISO 8601). |
recharge_list_productsList productsRead-onlyInspect
List Recharge products (subscription rules / discounts per product) with optional id filter. Returns { products }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /products.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of product ids to fetch. | |
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. |
recharge_list_subscriptionsList subscriptionsRead-onlyInspect
List subscriptions with optional filters (customer, address, status, ids, created/updated date ranges) and sorting. Returns { subscriptions }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /subscriptions.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Comma-separated list of subscription ids to fetch. | |
| limit | No | Max results per page (1-250, default 50). | |
| cursor | No | Pagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests. | |
| status | No | Filter by subscription status, e.g. active | cancelled | expired. | |
| sort_by | No | Sort order: id-asc | id-desc | created_at-asc | created_at-desc | updated_at-asc | updated_at-desc. | |
| address_id | No | Filter by address id. | |
| customer_id | No | Filter by customer id. | |
| created_at_max | No | Filter to subscriptions created on/before this date (ISO 8601). | |
| created_at_min | No | Filter to subscriptions created on/after this date (ISO 8601). | |
| updated_at_max | No | Filter to subscriptions updated on/before this date (ISO 8601). | |
| updated_at_min | No | Filter to subscriptions updated on/after this date (ISO 8601). |
recharge_skip_chargeSkip chargeDestructiveInspect
SKIPS a scheduled charge — prevents it from processing on its scheduled date. This MODIFIES live billing data. Some stores require the specific line items to skip via purchase_item_ids. Recharge REST: POST /charges/{id}/skip with JSON body { purchase_item_ids? }. Returns { charge }.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Charge id to skip. | |
| purchase_item_ids | No | The subscription/onetime line item ids to skip (some stores require this). |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!