Skip to main content
Glama

request_capability

Tell the operator about a machine-service capability you would pay for. The structured request is stored privately for product research; contact_uri is optional and is never called automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contact_uriNo
job_to_be_doneYes
max_budget_usdNo
decision_criteriaNo
current_alternativeNo
max_latency_secondsNo
required_output_fieldsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

B3.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden and does so reasonably well. It reveals that requests are stored privately, that the purpose is product research, and that contact_uri is never automatically invoked. This goes beyond a generic 'request' statement and gives the agent useful non-obvious behavior.

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?

The description is two sentences with no filler. It front-loads the primary purpose and adds the most important privacy/contact caveat right after. Every sentence carries meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with seven parameters and no annotated descriptions, the description is too sparse to fully support correct invocation. The output schema exists, which lessens the need to explain return values, but the description leaves parameter semantics and selection guidance largely uncovered. It captures the high-level intent but not enough operational detail.

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?

Schema description coverage is 0%, so the description should compensate by explaining parameter meanings. It only explains contact_uri's optionality and non-auto-call behavior, and implicitly points at job_to_be_done. It provides no guidance for max_budget_usd, decision_criteria, current_alternative, max_latency_seconds, or required_output_fields, which are not self-explanatory.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear purpose: submit a structured request for a machine-service capability the agent would pay for. It names the core action and resource ('Tell the operator about a machine-service capability') and the context of product research. It does not explicitly differentiate from siblings, but sibling names are about payments/quotes, so the distinction is apparent.

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

Usage Guidelines3/5

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

The description gives useful context for when to use the tool: it is for capability requests the agent would pay for, stored for product research. It also clarifies that contact_uri is optional and never called automatically, which is a meaningful usage caveat. However, it does not state explicit when-not-to-use conditions or alternatives, leaving some inference required.

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.