Skip to main content
Glama

Kann KI das? Sponsoring

Create sponsor checkout

create_sponsor_checkout
Idempotent

Create a Stripe hosted checkout only after explicit buyer confirmation of slot, EUR 990 net price and 30-day term.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slot_idYesConfirmed sponsor slot identifier selected by the buyer.
buyer_confirmedYesMust be true only after the buyer explicitly confirms the slot, EUR 990 net price and 30-day term.
idempotency_keyYesStable retry key for this exact buyer and slot request; reuse it for safe retries.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYesNet amount in euro cents.
statusYesCurrent purchase lifecycle state.
slot_idYesReserved sponsor slot identifier.
currencyYesISO 4217 settlement currency.
expires_atYesTime at which the checkout hold expires.
status_urlYesStatus endpoint for this purchase.
purchase_idYesStable purchase identifier.
checkout_urlNoStripe-hosted checkout URL when payment is still open.

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate this is a non-read-only, idempotent, non-destructive operation. The description adds the important 'only after confirmation' constraint, but it does not disclose further side effects (e.g., payment flow or external Stripe interaction). With annotations, this is acceptable but not exceptional.

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 a single, well-structured sentence that front-loads the primary action and includes the critical precondition. No filler or redundant content.

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?

The description is concise but sufficient for a simple create operation. It states the tool's purpose and necessary precondition. While it doesn't mention the return value, an output schema is present, and the annotations cover idempotency and safety profile.

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%, with detailed descriptions for all three parameters. The description adds no additional parameter-level meaning beyond what the schema already provides, so the baseline score of 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 the specific action: 'Create a Stripe hosted checkout' with a resource and scope. It also adds the key precondition ('only after explicit buyer confirmation'), and it is easily distinguished from the sibling tool list_sponsor_slots.

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 explicit timing guidance ('only after explicit buyer confirmation') and specifies the confirmed details (slot, EUR 990 net price, 30-day term). It does not explicitly compare with the sibling tool, but the intent is clear enough for an agent to know when to use it.

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

The two tools serve entirely distinct functions: one lists available slots, the other creates a checkout. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern: list_sponsor_slots and create_sponsor_checkout. The naming is clear, predictable, and uniform.

Tool Count3/5

With only two tools, the server feels thin and is on the borderline of being too minimal. However, the narrow scope of handling sponsorship checkout might justify the small count, though additional related tools would strengthen it.

Completeness3/5

The server covers the basic flow of viewing slots and initiating a checkout, but lacks tools for managing existing sponsorships, checking checkout status, or handling cancellations. This leaves notable gaps in the sponsorship lifecycle.

Resources