Skip to main content
Glama

get_payment_options

Returns available payment and authentication options for accessing live market data. Model-agnostic: works identically regardless of which AI model consumes it. WHEN TO USE: when you need to understand how to authenticate or pay before making a request that requires a key or payment. Returns upgrade ladder: sandbox (200 calls free), x402 per-request ($0.001 USDC), x402 sandbox (10 credits for $0.001), credit packs ($5 = 1000 calls), builder subscription ($99/mo = 50K/day). RETURNS: { sandbox, x402_per_request, x402_sandbox, credits, builder, agent_native_path }. No authentication required. Always returns 200.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses 'No authentication required' and 'Always returns 200', which are valuable behavioral facts. It also mentions 'Model-agnostic' and lists the return keys, providing transparency about the response shape. No contradictions with annotations exist.

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?

The description is well-structured with labeled sections ('WHEN TO USE', 'RETURNS') and is informative without excessive verbosity. The 'Model-agnostic' sentence is a slight extra but still adds relevant context. Overall, every sentence earns its place.

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?

For a zero-parameter read-only endpoint, the description is quite complete. It covers purpose, usage timing, authentication behavior, HTTP status, and return keys. The lack of an output schema is mitigated by the detailed explanation of the upgrade ladder. It could be more precise about the exact format of the response, but this is sufficient for an agent to use correctly.

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?

The tool has zero parameters, so the baseline is 4. The description does not need to add parameter semantics, but it does explain the return object structure and provides concrete examples (e.g., sandbox, x402, credits), which adds context beyond the empty 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 clearly states 'Returns available payment and authentication options for accessing live market data', which is a specific verb+resource. It distinguishes itself from siblings like get_market_schedule and list_exchanges by focusing on payment/authentication rather than market data itself.

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 provides 'WHEN TO USE: when you need to understand how to authenticate or pay before making a request that requires a key or payment.' This gives clear usage context, though it does not mention when not to use or explicitly name alternatives. Still, the siblings are clearly different, so this is strong guidance.

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
Disambiguation3/5

get_market_schedule and get_market_status both provide active status, causing potential confusion. However, descriptions clearly distinguish schedule planning from signed pre-trade verification, and the other two tools are distinct.

Naming Consistency4/5

Three tools use 'get_' prefix while one uses 'list_', a minor deviation. The naming is otherwise consistent and follows a predictable verb_noun pattern.

Tool Count5/5

Four tools is well-scoped for a market oracle server, covering discovery, schedule, status, and payment without unnecessary bloat.

Completeness5/5

The tool surface covers the full lifecycle: list exchanges, get schedule for planning, get status for execution gating, and payment options for access. No obvious gaps for the stated purpose.