Skip to main content
Glama

Prepare checkout payment

rendben_prepare_checkout_payment

Prepare an unsigned one-time payment or recurring subscription authorization from a public Rendben checkout URL. Requires the receipt email, public Solana wallet address and an explicit maximum USDC amount. This does not sign or submit the transaction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
checkoutUrlYesPublic merchant checkout URL on a *.rendben.com subdomain.
customerEmailYesEmail used for receipts and subscription management.
walletAddressYesPublic Solana address that will review, sign and fund the transaction.
maximumAmountUsdcYesHard USDC ceiling approved by the user or agent policy. For subscriptions, this caps each recurring charge.

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and openWorldHint=true, so the tool has write side effects. The description adds that it does not sign or submit, but fails to clarify what side effects actually occur (e.g., storing a pending authorization, creating a record). Given the openWorldHint, more disclosure is needed.

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 consists of two clear sentences: the first stating the core purpose and required inputs, the second clarifying what the tool does not do. There is no wasted text, though a structured format might improve scanability.

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?

The tool lacks an output schema, yet the description does not explain what the tool returns or the next steps after preparation. With siblings that have overlapping names (rendben_prepare_usdc_payment), additional context is needed to distinguish usage. The open-world hint also requires more behavioral explanation.

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?

The schema covers all four parameters with full description coverage (100%). The description adds meaningful context by stating that maximumAmountUsdc caps each recurring charge for subscriptions, providing value beyond the schema. Other parameters are adequately explained in schema.

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 clearly states the tool prepares an unsigned one-time payment or recurring subscription authorization from a public Rendben checkout URL, using a specific verb and resource. However, it does not differentiate from the sibling rendben_prepare_usdc_payment which appears similar in scope.

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 when a public checkout URL is available and preparation is needed, and explicitly states that signing/submitting is not part of this step. However, it provides no guidance on when to use this tool versus other siblings like rendben_create_payment_intent or rendben_prepare_usdc_payment.

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

Each tool targets a distinct action: creating payment intents, querying payment/subscription status, inspecting checkouts, and preparing payments. No two tools appear to overlap in purpose.

Naming Consistency5/5

All tools consistently follow the `rendben_verb_noun` pattern in snake_case (e.g., create_payment_intent, inspect_checkout). There are no deviations or mixed conventions.

Tool Count5/5

With 6 tools covering payment intent creation, status checks, checkout inspection, and payment preparation, the count is well-scoped for a focused payment server without being excessive or sparse.

Completeness3/5

The tool set covers core actions (create, check, prepare) but notably lacks tooling for signing/submitting transactions or managing refunds/cancellations. The preparation tools explicitly leave signing to the user, creating a workflow gap for an autonomous agent.

Resources