Skip to main content
Glama

Make an offer (bargain) on a Resollo product

offers.make

Submits a price offer (Make an Offer / bargaining) on a fixed-price Resollo listing, on behalf of the authenticated buyer. Only works on fixed-price listings where the seller has offers enabled and a fully active Stripe Connect account -- never on auctions. A product can only have one active offer at a time; if it's currently locked by someone else's in-flight offer, or isn't otherwise eligible, this returns product_not_eligible. This does NOT move any money -- it only creates a PENDING offer the seller must respond to (see offers.respond). Requires an 'Authorization: Bearer ' header.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
product_idYesThe uuid of the fixed-price listing to bid on.
currency_codeNoISO 4217 code for offered_price. Defaults to the product's own listing currency if omitted.
offered_priceYesThe price the buyer offers, in `currency_code` (or the listing's own currency if that is omitted).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateYes
offer_idYes
created_atYes
product_idYes
offered_priceYes

TDQS

A4.7/5.0
Behavior5/5

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

Annotations are sparse (only three boolean hints), so the description carries the burden and delivers substantially: it discloses that no money moves, that only a PENDING offer is created, that only one active offer can exist per product, that in-flight locks cause product_not_eligible, and the required Authorization header. This is exactly the behavioral context an agent needs beyond 'make an offer'.

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?

Four dense sentences, each earning its place: purpose, eligibility/exclusions, concurrency/error behavior, and side-effect clarity with auth requirement. The core verb is front-loaded and there is zero filler.

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?

For a tool with complex eligibility rules and side effects, everything needed to call it correctly is present: type of listing it applies to, seller prerequisites, exclusion cases, error behavior, pending-only semantics, the follow-up tool, and authentication. An output schema exists, so explaining return values is unnecessary.

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 baseline is 3. The description reinforces that offered_price is a non-binding offer amount, but it doesn't add parameter-specific meaning beyond the schema — the behavioral clarification that no money moves is really transparency, not parameter semantics. The schema already explains product_id, currency_code defaulting, and the exclusiveMinimum bound.

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?

States a specific verb ('Submits a price offer'), a precise resource ('fixed-price Resollo listing'), and actor ('authenticated buyer'). The 'never on auctions' exclusion and the distinction from the seller-side offers.respond make it unmistakable which action this performs.

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?

Explicitly states when it applies (fixed-price listings with offers enabled and a fully active Stripe Connect account) and when it does not ('never on auctions', locked/not-eligible returns product_not_eligible). Points to the follow-up alternative offers.respond, giving an agent clear routing context.

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

Each tool targets a distinct resource and action (marketplace metadata, offers, orders, products, questions, reviews, sellers), so an agent can reliably select the right one. The few same-domain tools (products.get/search, sellers.get/status) are clearly separated by their descriptions.

Naming Consistency4/5

Names mostly follow a clear domain.action pattern (products.create, questions.ask, orders.place), with domain prefixes making the surface predictable. Minor deviations like orders.checkoutLink (camelCase) and noun-style endpoints (marketplace.info, orders.status, sellers.status) keep it from being fully uniform.

Tool Count5/5

Fifteen tools is a well-scoped size for a marketplace API; each tool supports a distinct part of browsing, buying, selling, or marketplace reference data. No obvious redundant tools or bloated surface.

Completeness3/5

The tool set covers a wide marketplace workflow, but there are notable gaps: no endpoint to list the authenticated user's own orders, offers, or listings, and no product update/delete/activate after draft creation. Agents can work around some gaps via returned IDs and manual web steps, but certain user requests will dead-end.

Resources