Skip to main content
Glama

Create Rendben payment

rendben_create_payment_intent
Idempotent

Create a short-lived one-time USDC payment intent for a merchant product. Requires a Rendben read-write API key in the MCP Authorization header. This does not move funds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
metadataNoOptional merchant reconciliation data, up to 2 KB.
productIdYesActive one-time Rendben product ID.
customerEmailYesEmail used for the receipt.
idempotencyKeyYesStable key for safe retries.
customerReferenceNoOptional stable merchant customer ID.

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already indicate a non-read-only, non-destructive, idempotent operation. The description adds valuable behavioral context: 'short-lived', 'does not move funds', and the auth requirement. This goes beyond the annotations and clarifies the nature of the operation, though it could mention more about the lifecycle (e.g., expiration, subsequent steps).

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 two sentences, front-loaded with the main action, and each sentence adds necessary information. There is no fluff, and the critical details (purpose, auth, behavioral note) are presented efficiently.

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

Completeness3/5

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

Given the tool has 5 parameters (3 required) and no output schema, the description covers purpose, auth, and a key behavioral note. However, it does not mention what the response contains (e.g., payment intent ID, status), which would be helpful for an agent. The description is adequate but lacks this completeness for a tool without 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%, so the baseline is 3. The description does not add any additional meaning to the parameters beyond what the schema already provides. It mentions 'merchant product' in the purpose, but that does not specifically enhance parameter understanding.

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 the verb 'create', the resource 'payment intent', and provides specifics: 'short-lived', 'one-time', 'USDC', 'for a merchant product'. This distinguishes it from siblings like rendben_prepare_usdc_payment or rendben_prepare_checkout_payment, which are likely different stages of the payment flow.

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 the tool is used to create a payment intent for a merchant product and mentions the requirement of a read-write API key. However, it does not explicitly compare with sibling tools or provide guidance on when to use this one versus alternatives (e.g., rendben_prepare_usdc_payment). The usage context is clear but not fully explicit.

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