Skip to main content
Glama

List subscriptions

chargebee_list_subscriptions
Read-only

List subscriptions. Filter by customer or status. Chargebee API: GET /subscriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results per page (Chargebee max 100).
offsetNoOpaque pagination token from a previous response's `next_offset`.
statusNoSubscription status filter (→ status[is]).
customer_idNoOnly subscriptions of this customer (→ customer_id[is]).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnly annotation already establishes the safety profile. The description adds the GET endpoint and the filtering scope, but does not disclose pagination behavior, result shape, or any limits/edge cases. It adds some context but does not go beyond what one would expect from a simple read-only list operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, front-loaded with the core action and filter capability. The endpoint detail is minor but not harmful; nothing is verbose or redundant enough to reduce the score significantly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity read-only list with no required parameters and fully documented schema fields, the description is sufficient to invoke the tool. It lacks explicit alternative guidance and return-type detail, but those are not critical here given the annotations and schema richness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema description coverage is 100%, so the schema already fully documents limit, offset, status, and customer_id. The description only paraphrases the customer_id and status filters and adds no missing parameter semantics or examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource ('List subscriptions') and identifies the main filtering dimensions (customer, status). It clearly indicates a bulk read operation, but it does not explicitly differentiate itself from the related get_subscription or other list_* siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: use it when you want to list subscriptions and optionally filter by customer or status. However, it does not state when to prefer get_subscription for a single subscription or when not to use this tool, leaving the choice partly implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool maps to a distinct resource-action pair (e.g., create_customer, get_invoice, list_subscriptions). The get/list distinction is clear, and there is no overlap or ambiguity between tools.

Naming Consistency5/5

All tools follow a consistent `chargebee_<verb>_<resource>` snake_case pattern. Verbs are limited to create, get, list, and update, which are used uniformly across resources.

Tool Count5/5

With 13 tools covering customers, invoices, subscriptions, coupons, credit notes, items, item prices, and transactions, the count is appropriate for a subscription billing platform. It is neither overly sparse nor bloated.

Completeness3/5

The tool set provides strong read coverage (lists and gets) but limited write operations. Only customer creation and updates are supported; subscriptions, invoices, and other key resources lack create/update/delete operations, making it incomplete for full lifecycle management.