Skip to main content
Glama

create_pro_launch_checkout

Create a Stripe Checkout link to upgrade an existing submission to Pro Launch ($49, published within 24 h, Full refund if rejected.). Creates a live payment session and returns its URL; it charges nobody by itself. Give the URL to the person you are working for and let them pay it — never attempt to complete the payment. Requires a submission_id from submit_pwa that is less than 30 days old.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoPre-fills the buyer's email on the payment page. Optional — Stripe asks for it otherwise.
submission_idYesThe handle returned by submit_pwa, identifying the listing this payment accelerates.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
priceYes
refundYes
promo_codeNo
review_timeYes
checkout_urlYes
submission_idYes
promo_code_appliedYes

TDQS

A4.4/5.0
Behavior4/5

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

Adds meaningful behavior beyond annotations: it creates a live payment session, 'charges nobody by itself', and includes the 24-hour publication and refund policy. It does not discuss repeated invocation behavior or link expiry, but the annotations already flag non-idempotency, and the description covers the most important side-effect boundary.

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?

Four sentences, each carrying necessary information: core purpose, checkout behavior, user handoff instruction, and prerequisite. The parenthetical price and refund policy is compact, though the text could be slightly tightened without losing clarity.

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?

Together with the schema and annotations, the description fully equips an agent to select and invoke the tool: required parameter, optional prefill, prerequisite, output URL, and the mandatory user action are all covered. No material selection or invocation detail is missing.

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?

Schema description coverage is already 100%, and the description adds extra context for submission_id by constraining it to a submit_pwa handle less than 30 days old. The optional email is correctly described as a prefill; the description adds just enough beyond the schema.

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?

States a specific verb and resource: 'Create a Stripe Checkout link to upgrade an existing submission to Pro Launch' and includes the price and outcome. This clearly distinguishes the tool from the get/search/submit sibling tools.

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?

Gives a clear prerequisite ('submission_id from submit_pwa that is less than 30 days old') and an explicit execution rule ('Give the URL to the person you are working for and let them pay it — never attempt to complete the payment'). It does not explicitly name alternatives or a when-not-to-use case, but the intended trigger is clear.

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

Each tool targets a distinct resource and action: searching the catalog, fetching a single listing, checking submission requirements, submitting an app, checking submission status, and upgrading to Pro. There is no meaningful overlap between any two tools.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb-first pattern: get_*, search_*, submit_*, create_*. Objects are clearly distinguished (pwa vs submission), and the naming makes the tool's purpose predictable.

Tool Count5/5

Six tools is well-scoped for a submission-and-catalog server. Each tool covers a necessary step in the workflow without redundancy or bloat.

Completeness5/5

The server covers the full core lifecycle: requirements lookup, submission creation, status tracking, paid upgrade, catalog search, and catalog detail retrieval. There are no obvious dead ends for the stated purpose, and optional operations like editing or canceling a submission are not clearly required.

Resources