Skip to main content
Glama

Create a deposit checkout

create_checkout
Idempotent

Create a Stripe Checkout for a package's 50% deposit. Returns checkout_url, stripe_session_id, and amount_due. Show the amount to your user and open checkout_url for THEM to approve and pay; agents never complete payment themselves. Prices are fixed server-side. Pass a stable client_request_id so retries do not create duplicate checkouts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageYesOffer id from list_offers
client_request_idYesStable id you generate; makes creation idempotent on retry

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
currencyNo
offer_idNo
amount_dueNo
checkout_urlNo
stripe_session_idNo

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (readOnly=false, idempotent=true), the description discloses critical behavioral traits: the checkout_url is for the user to pay, not the agent; prices are fixed server-side (no client-controlled amount); and the idempotency mechanism via client_request_id. This prevents misuse and matches the annotations.

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 three sentences, front-loaded with purpose, and every sentence contributes essential information: the deposit amount, the return fields, user payment flow, and idempotency guidance. No fluff or repetition.

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

Completeness5/5

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

Given the payment complexity and presence of an output schema, the description is complete: it covers the main flow, user involvement, idempotency, and agent constraints. It enables correct invocation without needing additional contextual information.

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 coverage is 100%, with descriptions for both parameters (package enum from list_offers, client_request_id for idempotency). The description reinforces the client_request_id purpose but adds no new semantic detail beyond the schema. 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 'Create a Stripe Checkout for a package's 50% deposit' – a specific verb, resource, and scope. It is distinct from sibling tools like list_offers or create_upload_url, so the agent knows exactly what this tool does.

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 provides clear context: show the amount to the user, open checkout_url for the user to approve and pay, and agents never complete payment. It also advises passing a stable client_request_id to avoid duplicate checkouts. However, it does not explicitly state when not to use this tool versus alternatives (e.g., full payment flow), but the '50% deposit' implies scope.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct purpose: listing offers, creating payment checkout, verifying payment, uploading files, submitting briefs for paid orders, and custom inquiries. No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (e.g., create_checkout, get_order, list_offers). No mixing of conventions or unclear names.

Tool Count5/5

Six tools cover the entire workflow without excess or deficiency. Each tool serves a necessary step in the process from offer viewing to brief submission.

Completeness4/5

The tool surface covers the core workflow well. Minor gaps exist (no order cancellation or custom inquiry status retrieval), but these are mitigated by external processes (email) and clear instructions.