Skip to main content
Glama

Reqo Supply Quote Desk

Accept a quote, creating an order and payment

accept_quote

Accepts a 'ready' quote. Returns an order_id and a secure payment link the buyer completes to place the order. Accepting a quote whose payment is settled confirms the order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rfq_idYesThe rfq_id of a quote whose status is 'ready'
confirmYesMust be true only after the buyer has reviewed the quote total and authorized the purchase

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/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 burden and does well: it discloses that accepting creates an order and payment link, that the buyer must complete the link, and that settled payment confirms the order. It still omits authorization requirements, error behavior, and whether the quote is locked or reversible.

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, front-loaded with the action and immediately followed by the return behavior and confirmation condition. No filler.

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 two-parameter mutation tool with no output schema, the description supplies the essential return information (order_id and payment link) and the payment-settled confirmation rule. It is complete enough to call correctly, though it omits error cases and permissions.

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 description coverage is 100%, so the schema already documents rfq_id and confirm. The description's 'ready quote' phrasing adds a precondition but no syntax or format detail beyond what the schema provides, matching the baseline for high coverage.

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 states a specific verb ('Accepts') and resource ('ready quote'), and it clarifies the resulting artifacts ('order_id and a secure payment link'). This differentiates it from sibling read tools like get_quote and from submit_rfq.

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?

It gives a clear precondition: the quote must be status 'ready.' It does not explicitly name alternatives such as get_quote or describe when not to use it, but the context for use 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.

Resources