orb
Server Details
Read Orb customers, subscriptions, invoices, usage and costs; create or update customers.
- 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
26 toolsorb_create_customerCreate customerDestructiveInspect
Creates a new customer in Orb (additive). Requires name and a valid email. Orb API: POST /customers.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Customer display name (required). | |
| Yes | Customer billing email (required, must be a valid email). | ||
| currency | No | ISO-4217 currency code for this customer. | |
| metadata | No | User-defined key/value metadata (string→string). | |
| timezone | No | IANA timezone (e.g. America/New_York). | |
| payment_provider | No | External payment/invoicing provider. | |
| payment_provider_id | No | Id of this customer in the external payment provider. | |
| external_customer_id | No | Your external id for this customer. |
orb_get_customerGet customerRead-onlyInspect
Fetch a single customer by Orb customer id. Orb API: GET /customers/{customer_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | Orb customer id. |
orb_get_customer_by_external_idGet customer by external idRead-onlyInspect
Fetch a single customer by your external customer id. Orb API: GET /customers/external_customer_id/{external_customer_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| external_customer_id | Yes | Your external customer id. |
orb_get_customer_costsGet customer costsRead-onlyInspect
Get costs incurred by a customer over a timeframe. Orb API: GET /customers/{customer_id}/costs.
| Name | Required | Description | Default |
|---|---|---|---|
| group_by | No | Price grouping key to break costs down by. | |
| view_mode | No | periodic or cumulative. | |
| customer_id | Yes | Orb customer id. | |
| timeframe_end | No | ISO-8601 datetime, exclusive end. | |
| timeframe_start | No | ISO-8601 datetime, inclusive start. |
orb_get_customer_creditsGet customer credit balancesRead-onlyInspect
Get a customer's credit balances by currency. Orb API: GET /customers/{customer_id}/credits.
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | Filter to a single currency. | |
| customer_id | Yes | Orb customer id. | |
| include_all_blocks | No | Include expired/depleted blocks too. |
orb_get_customer_credits_ledgerGet customer credit ledgerRead-onlyInspect
Get the append-only credit ledger for a customer. Orb API: GET /customers/{customer_id}/credits/ledger.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| currency | No | Filter to a single currency. | |
| entry_type | No | Filter to a ledger entry type (e.g. increment, decrement, expiration_change). | |
| customer_id | Yes | Orb customer id. |
orb_get_invoiceGet invoiceRead-onlyInspect
Fetch a single invoice by id. Orb API: GET /invoices/{invoice_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| invoice_id | Yes | Orb invoice id. |
orb_get_itemGet itemRead-onlyInspect
Fetch a single item by id. Orb API: GET /items/{item_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| item_id | Yes | Orb item id. |
orb_get_planGet planRead-onlyInspect
Fetch a single plan by id. Orb API: GET /plans/{plan_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| plan_id | Yes | Orb plan id. |
orb_get_priceGet priceRead-onlyInspect
Fetch a single price by id. Orb API: GET /prices/{price_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| price_id | Yes | Orb price id. |
orb_get_subscriptionGet subscriptionRead-onlyInspect
Fetch a single subscription by id. Orb API: GET /subscriptions/{subscription_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| subscription_id | Yes | Orb subscription id. |
orb_get_subscription_costsGet subscription costsRead-onlyInspect
Get costs for a subscription over a timeframe. Orb API: GET /subscriptions/{subscription_id}/costs.
| Name | Required | Description | Default |
|---|---|---|---|
| group_by | No | Price grouping key to break costs down by. | |
| view_mode | No | periodic or cumulative. | |
| timeframe_end | No | ISO-8601 datetime, exclusive end. | |
| subscription_id | Yes | Orb subscription id. | |
| timeframe_start | No | ISO-8601 datetime, inclusive start. |
orb_get_subscription_scheduleGet subscription scheduleRead-onlyInspect
Get the plan-change schedule for a subscription. Orb API: GET /subscriptions/{subscription_id}/schedule.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| subscription_id | Yes | Orb subscription id. |
orb_get_subscription_usageGet subscription usageRead-onlyInspect
Get metered usage for a subscription over a timeframe. Orb API: GET /subscriptions/{subscription_id}/usage.
| Name | Required | Description | Default |
|---|---|---|---|
| group_by | No | Property to group usage by. | |
| granularity | No | Time granularity for buckets (e.g. day). | |
| timeframe_end | No | ISO-8601 datetime, exclusive end. | |
| subscription_id | Yes | Orb subscription id. | |
| timeframe_start | No | ISO-8601 datetime, inclusive start. |
orb_get_upcoming_invoiceGet upcoming invoiceRead-onlyInspect
Preview the upcoming (draft) invoice for a subscription. Orb API: GET /invoices/upcoming.
| Name | Required | Description | Default |
|---|---|---|---|
| subscription_id | Yes | Orb subscription id. |
orb_list_alertsList alertsRead-onlyInspect
List usage/spend alerts, optionally filtered by customer or subscription. Orb API: GET /alerts.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| customer_id | No | Filter to an Orb customer id. | |
| subscription_id | No | Filter to a subscription id. | |
| external_customer_id | No | Filter to your external customer id. |
orb_list_couponsList couponsRead-onlyInspect
List coupons in the Orb account. Orb API: GET /coupons.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| show_archived | No | Include archived coupons. |
orb_list_customersList customersRead-onlyInspect
List customers in the Orb account. Orb API: GET /customers.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). |
orb_list_invoicesList invoicesRead-onlyInspect
List invoices, optionally filtered by customer, subscription, or status. Orb API: GET /invoices.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| status | No | Filter by invoice status (e.g. draft, issued, paid, void). | |
| due_date | No | ISO-8601 date filter. | |
| date_type | No | Which date `due_date` filters on (e.g. due_date, invoice_date). | |
| customer_id | No | Filter to an Orb customer id. | |
| subscription_id | No | Filter to a subscription id. | |
| external_customer_id | No | Filter to your external customer id. |
orb_list_itemsList itemsRead-onlyInspect
List items (the things you bill for). Orb API: GET /items.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). |
orb_list_metricsList billable metricsRead-onlyInspect
List billable metrics configured in the Orb account. Orb API: GET /metrics.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). |
orb_list_plansList plansRead-onlyInspect
List plans configured in the Orb account. Orb API: GET /plans.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| status | No | Filter by plan status. |
orb_list_pricesList pricesRead-onlyInspect
List prices configured in the Orb account. Orb API: GET /prices.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). |
orb_list_subscriptionsList subscriptionsRead-onlyInspect
List subscriptions, optionally filtered by customer or status. Orb API: GET /subscriptions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–100, default 20). | |
| cursor | No | Opaque pagination cursor (from pagination_metadata.next_cursor). | |
| status | No | Filter by subscription status. | |
| customer_id | No | Filter to an Orb customer id. | |
| external_customer_id | No | Filter to your external customer id. |
orb_pingPing / auth checkRead-onlyInspect
Health and auth check — verifies the API key works. Orb API: GET /ping.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
orb_update_customerUpdate customerDestructiveInspect
Updates an existing customer's details (reversible). Only provided fields are changed. Orb API: PUT /customers/{customer_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New display name. | |
| No | New billing email (must be a valid email). | ||
| currency | No | New ISO-4217 currency code. | |
| metadata | No | User-defined key/value metadata (string→string). | |
| timezone | No | New IANA timezone. | |
| customer_id | Yes | Orb customer id (required). | |
| payment_provider | No | External payment/invoicing provider. | |
| payment_provider_id | No | New id in the external payment provider. | |
| external_customer_id | No | New external id. |
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!