Skip to main content
Glama

Get customer

chargebee_get_customer
Read-only

Retrieve a single customer by id. Chargebee API: GET /customers/{customer_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customer_idYesChargebee customer id.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true, and the description is consistent with that. The description adds the API endpoint format but does not disclose error behavior, authentication requirements, or response characteristics. With annotations covering the safety profile, the description provides only modest additional behavioral context.

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

Conciseness5/5

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

The description is a single, compact sentence that front-loads the core function and then adds the precise API reference. Every word contributes value, with no redundancy or filler.

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 simple single-parameter read operation with readOnlyHint=true, the description gives enough context for an agent to select and invoke the tool. It lacks explicit details about not-found behavior or return format, but these are less critical given the tool's low complexity and the absence of an output schema.

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?

Schema description coverage is 100%, and the parameter is already well documented as 'Chargebee customer id'. The description reinforces that the customer is retrieved by id but does not add meaningful detail beyond the schema, such as format requirements or value constraints.

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

Purpose5/5

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

The description clearly states 'Retrieve a single customer by id', specifying both the action and the resource. It also provides the exact Chargebee API endpoint pattern, which distinguishes it from sibling tools like chargebee_list_customers, chargebee_create_customer, and chargebee_update_customer.

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

Usage Guidelines4/5

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

The description makes the usage context clear: use this when you have a specific customer_id and need that one customer. It does not explicitly name alternatives or state when not to use it, but the distinction from list/create/update siblings is reasonably implied.

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.