Skip to main content
Glama

IMBA Agent Spend

Buy a virtual card

create_card
DestructiveIdempotent

Issue a Visa/MasterCard prepaid from this agent 2401 USDT so the agent can pay merchants that require a card (airlines, hotels, SaaS, datacenter/GPU clouds). POST /api/pin/create_card. ext_id required. imba_product_id is core.card_product.id. Never payment_source=stars. Never pass client_id. IMBA does not create the booking.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoCardholder KYC email, not the agent 3DS mailbox.
phoneNo
ext_idYesIdempotency key. Reuse the same id to retry the same order.
countryNo
last_nameNo
birth_dateNo
first_nameNo
imba_product_idYes

TDQS

A4.3/5.0
Behavior4/5

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

With annotations declaring readOnlyHint=false, idempotentHint=true, and destructiveHint=true, the description adds important context: it issues a prepaid card, requires ext_id for idempotency, and clarifies that IMBA does not create the booking. It also warns against using payment_source=stars and client_id. This goes beyond the structured annotations without contradicting them.

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 dense and purposeful, with the core purpose front-loaded and usage constraints packed into a few sentences. Minor redundancy ('prepaid from this agent') and mixing endpoint info with instructions slightly hurt clarity but overall it's efficient.

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 an 8-parameter tool with 25% schema coverage, the description explains the essential params and critical constraints. It doesn't detail every optional field, but the required usage context and idempotency semantics are covered. Some gaps remain around card product selection, but the reference to core.card_product.id helps.

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

Parameters4/5

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

Input schema coverage is only 25%, so the description must clarify key parameters. It explicitly says ext_id is required and is an idempotency key, and that imba_product_id is core.card_product.id. It also warns against payment_source=stars (though payment_source isn't in the schema). This meaningfully compensates for the schema's gaps.

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 states a specific action ('Issue a Visa/MasterCard prepaid') and the resource (a virtual card), plus the concrete use case (paying merchants that require a card). It also names the endpoint and disambiguates from other card operations by mentioning what IMBA does not do.

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 explains when to use this tool: when the agent needs to pay merchants requiring a card, and explicitly notes constraints like 'Never payment_source=stars' and 'Never pass client_id'. It doesn't explicitly name sibling alternatives, but the card-issuing context plus 'IMBA does not create the booking' gives useful routing context.

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
Disambiguation4/5

Most tools target distinct resource-action pairs: card creation, card detail, top-up, eSIM/gift purchase, KYT initiation, KYT polling, and history are all separated. The KYT family is the main risk area, but the descriptions clearly distinguish check, get, checks, and quote.

Naming Consistency4/5

The dominant pattern is verb_noun snake_case, e.g., list_cards, purchase_gift, topup_card, get_balance. The KYT group is inconsistent—kyt_check, kyt_check_get, kyt_checks, kyt_quote—and set_webhook/rotate_hmac break the pattern slightly, but the overall set remains predictable.

Tool Count4/5

19 tools is above the typical 3-15 sweet spot, but the count is justified by the range of spend rails and supporting operations: cards, eSIM, gift cards, KYT screening, notifications, and webhook management. No tool feels truly redundant, though the KYT cluster adds some bulk.

Completeness3/5

Core purchase and card workflows are covered: create, topup, details, list, and buy operations exist for cards/eSIM/gifts, plus deposit and KYT screening. However, there is no transaction/spend history, no card freeze or block action, and no explicit purchase status/refund flow, which are notable gaps for a spend-focused server.

Resources