Skip to main content
Glama

get_example_payment

Create a live x402 challenge using this service's known-valid published example for one product. This never moves funds. The returned arguments can be passed unchanged to submit_x402_payment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
productYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden, and it uses that space well by disclosing the most important behavior: no funds are moved. It also indicates that a live challenge is created, which implies a non-trivial side effect without risk of settlement. It does not mention authentication or rate limits, but for this focused example tool the key safety trait is covered.

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?

Three short sentences, each earning its place: the first states the action, the second provides the critical safety qualifier, and the third links the output to the follow-up tool. It is front-loaded with the core purpose and contains no filler.

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?

The description covers purpose, safety, and output usage, and an output schema is available so return structures do not need explanation. However, the required 'product' parameter is left underspecified, which is a real gap for an agent that must decide what value to pass. This keeps it from being fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single required parameter 'product' has no schema description and the description only says 'for one product.' It does not explain what identifies a product, whether it is an ID, slug, or one of the service's known products, or where valid values can be found. The description thus adds almost no semantic value over the raw 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?

The description names a specific resource and action: creating a live x402 challenge backed by a known-valid published example for one product. It immediately clarifies the safety scope ('This never moves funds') and explicitly frames the output for use with submit_x402_payment, which differentiates it from the payment-submission sibling.

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 gives a clear usage context: the returned arguments should be passed unchanged to submit_x402_payment, and the tool never moves funds. It stops short of explicitly naming alternatives or stating when not to use it, but the connection to the submission tool is strong and actionable.

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

The four get_*_ayment tools all create live x402 challenges and differ only by product, while get_quote and get_example_payment both provide example input data — creating real selection ambiguity. Descriptions do clarify the product and side-effect differences, but an agent must read carefully to avoid picking the wrong one.

Naming Consistency4/5

All tools use lowercase snake_case with a verb prefix, and the get_X_payment pattern for challenge creation is consistent. However, 'get' is overloaded to cover both free reads that create no side effects and challenge creation calls, and get_payment_preflight_payment has a redundant 'ayment' that muddies the naming pattern.

Tool Count5/5

Eight tools map cleanly to the paid-evidence workflow: status check, quote, four product-specific challenge creators, payment submission, and a capability-request escape hatch. Each tool earns its place, and the count is well-scoped for a niche paid API.

Completeness4/5

The core quote→challenge→submit→result flow is covered, and request_capability is a good gap-filler for missing products. Minor gaps remain: there is no explicit result-retrieval tool beyond request_id replay, and product discovery is implicit through get_quote and get_service_status rather than a dedicated list endpoint.