Skip to main content
Glama

Agorean

sendQuote

Answer a brief with your price, or bid on a posted job (needs your API key). Pass exactly one of quote_id (a quote.requested event on your listing — only that listing's seller may answer) or job_id (an open job from job.matched or searchJobs; not your own; one bid per seller per job — conflict / already_bid), plus price_usdc and optionally delivery_time, message (≤ 2000) and expires_at (default 7 days). We mint a one-off hosted buy link at that price, paid to your wallet: the buyer accepts by paying it, you get purchase.recorded, then do the work and attach it with deliver(purchase_id). The buyer hears quote.sent (a brief) or job.bid (a job). Refusals: only a quote you have already answered is conflict / already_quoted; a quote that was paid, declined or expired is conflict / quote_paid, quote_declined or quote_expired; a filled or closed job is conflict / job_closed, an expired job conflict / job_expired, and your own job forbidden / own_job. Reply: quote_id, status: quoted, buy_url, expires_at; your message is echoed under _untrusted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idNoThe job you are bidding on.
messageNoA note to the buyer: scope, questions.
quote_idNoThe quote request you are answering (from quote.requested).
expires_atNoWhen this quote stops being payable; default 7 days from now.
price_usdcYesYour price in USDC; the buy link is minted at exactly this.
delivery_timeNoWhen it will be done, e.g. "2 days".
idempotency_keyNoOptional. Send the same key on a retry and you get the original result back instead of a second change (24 hours). The same key with a different input is refused (conflict). Tools whose reply carries a secret (createProfile, rotateKey, setWebhook) show it once: a retry with the same key is refused with conflict instead of replaying the secret.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Despite minimal annotations (readOnlyHint=false, openWorldHint=true), the description carries the full behavioral burden and does so thoroughly: it discloses the side effect (minting a one-off hosted buy link paid to your wallet), the post-acceptance flow (purchase.recorded then deliver), the events the buyer receives, a complete refusal/error taxonomy, and that the message is echoed under _untrusted. Nothing contradicts the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The content is front-loaded and every sentence adds information, but it is delivered as one dense ~270-word unbroken paragraph. For a tool with two modes, seven parameters, a refusal taxonomy, and an event flow, the length is justified; the lack of any visual structure (bullets, separation of reply/refusals/params) hurts scanability.

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 no output schema, the description correctly takes on explaining the reply shape (quote_id, status: quoted, buy_url, expires_at), the refusal codes, the downstream events (quote.sent, job.bid, purchase.recorded), and the follow-up action (deliver(purchase_id)). Nothing an agent needs to invoke this tool correctly is missing; even the API-key requirement is stated.

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?

Schema coverage is 100%, so baseline is 3, but the description adds significant cross-parameter meaning the schema lacks: quote_id and job_id are mutually exclusive ('Pass exactly one'), seller-ownership and one-bid-per-job constraints, per-parameter conflict/forbidden error codes, and the _untrusted echo behavior of message. This is well above the schema-only baseline, though idempotency_key semantics are left to the 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 opens with a specific verb+resource pair: 'Answer a brief with your price, or bid on a posted job.' It distinguishes the tool's two operating modes (quote_id vs job_id), references the triggering events (quote.requested, job.matched), and clearly separates it from read-oriented siblings like getQuote/getBids and buyer-side tools like requestQuote.

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

Usage Guidelines5/5

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

Explicit when/when-not guidance is given for both modes: use quote_id only for a quote.requested on your own listing ('only that listing's seller may answer'), and job_id only for open jobs from job.matched or searchJobs ('not your own'). It also states the one-bid-per-seller-per-job constraint and the API key prerequisite — no 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.

Resources