Skip to main content
Glama

Verify an order after checkout

get_order
Read-only

Verify payment after checkout and receive an order-scoped access token. Returns paid, package, deposit, and order_token: use order_token for create_upload_url and submit_brief. Payment status can only be established here, never assumed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesStripe checkout session id (cs_...)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
paidNo
totalNo
depositNo
packageNo
expires_atNo
order_tokenNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations declare readOnlyHint and openWorldHint. Description adds value by detailing returned fields and emphasizing that payment status is authoritative only here. No contradictions.

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?

Two sentences plus a list of return fields, front-loaded with primary purpose. Every sentence adds value, no redundancy.

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?

With output schema present, description covers when to use, what it returns, and how the output is used in sibling tools. Complete for a single-parameter read operation.

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 coverage is 100%, with session_id fully described in schema. Description does not add new information about the parameter beyond what schema already provides.

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 tool verifies payment and returns an order token, with specific return fields. It distinguishes from siblings by specifying subsequent use of the token with create_upload_url and submit_brief.

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?

Explicitly states that payment status can only be established here, indicating when to use. Implicitly suggests using before other order-related tools. No explicit when-not but sufficient context.

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

Each tool targets a distinct action: listing offers, creating checkout, verifying payment, uploading files, submitting briefs, handling custom inquiries, and checking statuses. No overlapping purposes.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., create_checkout, get_order, list_offers) using snake_case and descriptive verbs like create, get, list, submit.

Tool Count5/5

With 8 tools, the set is well-scoped for managing production packages, checkouts, uploads, briefs, and custom inquiries. Neither too sparse nor too heavy.

Completeness4/5

Covers the main workflows (offer selection, payment, asset upload, brief submission, and custom inquiry lifecycle). Minor gaps like order cancellation or brief update tools, but sufficient for core operations.

Resources