Skip to main content
Glama

Get a Stripe checkout link for a dispatched Resollo order

orders.checkoutLink

Creates and returns a Stripe-hosted checkout URL for a DISPATCHED, not-yet-paid order, on behalf of the BUYER -- exactly what the 'Pay with Stripe' button on the Resollo order page does. This tool NEVER charges any payment method and NEVER completes a payment itself -- it only produces a link. The human buyer must open that URL themselves and complete payment on Stripe's own hosted page. Never tell the user their order is 'paid' after calling this tool -- give them the link and tell them they still need to complete payment there. Fails with not_ready_for_payment if the seller hasn't dispatched the order yet, or already_paid if it's already been paid. Requires an 'Authorization: Bearer ' header.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orderIdYesThe uuid of the dispatched, not-yet-paid order.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idYes
checkout_urlYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations, the description discloses crucial behavioral traits: it never charges a payment method, only produces a link, and requires the human buyer to complete payment on Stripe's hosted page. It also provides an explicit guardrail about never telling the user the order is 'paid' after calling, and states the required Authorization header. These details add significant context beyond the simple 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?

Every sentence in the description carries essential information: the core action, the non-charging behavior, the buyer obligation, the post-call communication rule, the failure modes, and the auth requirement. The main action is front-loaded, and the structure flows logically from what it does to how to handle the result, with no wasted filler.

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?

The description is complete for a payment-link tool with one parameter. It covers what the tool does, the preconditions, the failure reasons, the auth requirements, and the important caveat about not claiming payment completion. The output schema exists but is not shown, so the description's mention of returning a Stripe-hosted URL sufficiently communicates the return value.

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?

With 100% schema coverage, the orderId parameter is already documented as 'the uuid of the dispatched, not-yet-paid order.' The description reinforces these preconditions and adds context by explaining the buyer-centric purpose, which helps the agent understand the state requirements for the parameter beyond the schema alone.

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 verb and resource: 'Creates and returns a Stripe-hosted checkout URL' for a 'DISPATCHED, not-yet-paid order'. It clearly scopes the action and differentiates it from payment execution by emphasizing it never charges or completes payment, making it distinct from other order/payment related tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly specifies when to use the tool: for dispatched, not-yet-paid orders on behalf of the buyer. It also defines when not to use it by documenting failure modes: not_ready_for_payment if not yet dispatched, and already_paid if already paid. This gives clear when/when-not conditions, even if it doesn't name an alternative tool.

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

Each tool is cleanly grouped by resource (marketplace, offers, orders, products, questions, reviews, sellers) and within a group every action is distinct. There is no real overlap between e.g. orders.place, orders.checkoutLink, and orders.status, or between offers.make and offers.respond.

Naming Consistency4/5

Tool names follow a predictable resource.action pattern with lowercase verb-like second segments (offers.list, products.create, questions.ask). Minor deviations exist: orders.checkoutLink uses camelCase and sellers.listings is a noun rather than a verb, but the overall convention remains easy to infer.

Tool Count3/5

18 tools sits in the 16-25 borderline-heavy range. The marketplace scope is broad enough that most tools feel justified, but the count is slightly above the ideal well-scoped band and could be seen as heavy for a single API server.

Completeness3/5

The server covers core marketplace browsing, product draft creation, order placement, offers, questions, and reviews well. However, there are notable lifecycle gaps: products can be created but not updated/deleted/activated via API, orders have no dispatch/confirm/receive actions, and offers have no cancel action, with several operations pushed to the web UI.

Resources