Skip to main content
Glama

Create customer

orb_create_customer
Destructive

Creates a new customer in Orb (additive). Requires name and a valid email. Orb API: POST /customers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesCustomer display name (required).
emailYesCustomer billing email (required, must be a valid email).
currencyNoISO-4217 currency code for this customer.
metadataNoUser-defined key/value metadata (string→string).
timezoneNoIANA timezone (e.g. America/New_York).
payment_providerNoExternal payment/invoicing provider.
payment_provider_idNoId of this customer in the external payment provider.
external_customer_idNoYour external id for this customer.

TDQS

C2.9/5.0
Behavior1/5

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

Annotation Contradiction: the description calls the operation 'additive', while the annotations mark destructiveHint true. This directly contradicts the annotation and sends conflicting signals about whether the tool may destroy data. No return format, error behavior, or side-effect context is provided.

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?

The description is short and front-loaded, with the core purpose in the first clause. The repeated required-fields statement is somewhat redundant with the schema, but it is brief and does not harm clarity.

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

Completeness2/5

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

For an 8-parameter creation tool with no output schema, the description offers only the basic purpose and required fields. It lacks return-value expectations, error behavior, and resolution for the conflicting destructiveHint annotation, leaving an agent under-informed about how to handle the call's result safely.

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%, so the schema already documents all 8 parameters. The description only repeats that name and email are required, adding no meaning beyond what the schema provides. The baseline 3 is appropriate.

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 a specific verb ('Creates') and resource ('new customer in Orb'), and adds the clarifying term 'additive' to indicate the operation's non-destructive nature. This is enough to distinguish it from the get/list siblings and from orb_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 Guidelines2/5

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

The description provides prerequisites (name and valid email) but does not say when to use this tool versus alternatives. It does not mention that orb_update_customer should be used for existing customers or explain any uniqueness/idempotency concerns around external_customer_id.

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.7/5.0
Disambiguation5/5

Every tool name clearly specifies a distinct action and resource (e.g., list_subscriptions vs get_subscription). There is no ambiguity between tools as each targets a unique combination of verb and noun.

Naming Consistency5/5

All tool names follow a consistent pattern: 'orb_<verb>_<resource>' in snake_case. This makes them predictable and easy to distinguish.

Tool Count4/5

With 26 tools, the set covers many resources and operations for a billing platform. While slightly above typical range, each tool justifies its existence given the domain complexity.

Completeness3/5

The tool surface provides extensive read capabilities and basic customer CRUD, but lacks create/update/delete for most other resources (e.g., subscriptions, invoices) and missing operations like void or cancel. This creates notable gaps for full lifecycle management.