swell
Server Details
Manage your Swell headless-commerce store — products, orders, customers, and 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
16 toolsswell_create_productCreate a productDestructiveInspect
MUTATES LIVE STORE DATA. Create a new product in the store. Provide the common fields directly (name is required); anything else goes in fields, which is merged into the request body. Swell backend REST API: POST /products.
| Name | Required | Description | Default |
|---|---|---|---|
| sku | No | Stock-keeping unit. | |
| name | Yes | Product name (required). | |
| type | No | Product type, e.g. "standard", "subscription", "digital". | |
| price | No | Product price. | |
| active | No | Whether the product is active/visible. | |
| fields | No | Any additional product fields, merged into the request body (e.g. attributes, options, images). | |
| description | No | Product description. | |
| stock_level | No | Available stock quantity. |
swell_get_customerGet a customerRead-onlyInspect
Fetch a single customer (Swell accounts model) by id. Supports expand and fields. Swell backend REST API: GET /accounts/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Customer (account) id. | |
| expand | No | Comma-separated related fields to expand, e.g. "orders,subscriptions". | |
| fields | No | Comma-separated fields to return. |
swell_get_orderGet an orderRead-onlyInspect
Fetch a single order by its record id or its order number. Supports expand and fields. Swell backend REST API: GET /orders/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Order id or order number. | |
| expand | No | Comma-separated related fields to expand, e.g. "items,account". | |
| fields | No | Comma-separated fields to return. |
swell_get_productGet a productRead-onlyInspect
Fetch a single product by its record id or its slug. Supports expand and fields. Swell backend REST API: GET /products/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Product id or slug. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| fields | No | Comma-separated fields to return, e.g. "name,price". |
swell_get_subscriptionGet a subscriptionRead-onlyInspect
Fetch a single subscription by id. Supports expand. Swell backend REST API: GET /subscriptions/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Subscription id. | |
| expand | No | Comma-separated related fields to expand, e.g. "account,product". |
swell_list_cartsList cartsRead-onlyInspect
List shopping carts (including abandoned carts), with filtering, sorting, and expansion. Swell backend REST API: GET /carts.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". |
swell_list_categoriesList categoriesRead-onlyInspect
List product categories, with filtering, sorting, search, and expansion. Swell backend REST API: GET /categories.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| search | No | Free-text search across the model's searchable fields. |
swell_list_couponsList couponsRead-onlyInspect
List discount coupons, with filtering and sorting. Swell backend REST API: GET /coupons.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. |
swell_list_customersList customersRead-onlyInspect
List customers. In Swell, customers are the accounts model — this queries GET /accounts, with filtering, sorting, search, and expansion.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| search | No | Free-text search across the model's searchable fields. |
swell_list_invoicesList invoicesRead-onlyInspect
List invoices (typically subscription invoices), with filtering, sorting, and expansion. Swell backend REST API: GET /invoices.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". |
swell_list_ordersList ordersRead-onlyInspect
List orders, with MongoDB-style filtering, sorting, search, and expansion. Swell backend REST API: GET /orders.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| search | No | Free-text search across the model's searchable fields. |
swell_list_productsList productsRead-onlyInspect
List products in the store, with MongoDB-style filtering, sorting, search, field selection, and expansion. Swell backend REST API: GET /products.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| fields | No | Comma-separated fields to return, e.g. "name,price,active". | |
| search | No | Free-text search across the model's searchable fields. |
swell_list_subscriptionsList subscriptionsRead-onlyInspect
List subscriptions, with filtering, sorting, and expansion. Swell backend REST API: GET /subscriptions.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". |
swell_queryQuery any collection (read-only)Read-onlyInspect
Power tool: read-only (GET only) access to ANY Swell model not covered by a dedicated tool — e.g. stock, promotions, giftcards, payments, shipments, settings. Supply the collection name plus the usual list params (limit, page, where, sort, expand, fields, search). Swell backend REST API: GET /{collection}.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| fields | No | Comma-separated fields to return, e.g. "name,price,active". | |
| search | No | Free-text search across the model's searchable fields. | |
| collection | Yes | Swell model/collection name, e.g. "products", "stock", "promotions", "giftcards". |
swell_update_orderUpdate an orderDestructiveInspect
MUTATES A LIVE ORDER. Partially update an existing order by id — e.g. change status, fulfillment, or notes. Provide the id plus a fields object of attributes to change, e.g. {"status":"complete"}. Swell backend REST API: PUT /orders/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Order id to update (required). | |
| fields | Yes | Partial set of order attributes to update, e.g. {"status":"complete"} or fulfillment fields. |
swell_update_productUpdate a productDestructiveInspect
MUTATES LIVE STORE DATA. Partially update an existing product by id. Provide the id plus a fields object of attributes to change. Swell backend REST API: PUT /products/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Product id to update (required). | |
| fields | Yes | Partial set of product attributes to update, e.g. {"price":19.99,"active":false}. |
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!