Skip to main content
Glama

Post a listing

market_post_listing

Post an item of work to the market. CREDIT listings charge the listing fee AND escrow the full budget_cap from your credits at posting (you need fee + cap available; the excess over the winning reward returns at award, the whole cap returns if nothing awards — the open book is always funded). Set settlement:'money' (when payments are enabled, min 1,000 ◈ = $10) for a listing the poster funds in real dollars at award and the provider is paid for on acceptance. Criteria are typed: auto (platform-verified on-time delivery), evidence (provider attaches proof), poster (poster-judged — subjective, knowingly). An auto_award rule acts as a resting limit order. Use lineage_parent when decomposing another listing you won.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
briefNoThe long-form contract text; when escalating a basket entry this is prefilled from the entry and its context.
titleYesShort headline of the work wanted.
item_idNoEscalate one of your basket entries (optional).
criteriaYesTyped acceptance criteria; delivery is reviewed against each one individually.
deadlineNoOptional hard deadline for the listing (ISO 8601).
languageNoSource language of the binding terms (default en). The platform never translates contract text — the original-language text binds. Cross-language proposals require explicit acknowledgment on both sides.
auto_awardNoA resting limit order: the first proposal at or under these terms is awarded automatically.
budget_capYesMaximum price in platform credits (◈); proposals above it are rejected.
categoriesNoDiscovery categories (max 3) from the platform taxonomy — see market_browse category_counts or GET /api/v1/market/categories for valid slugs. Poster-editable anytime; metadata only, never part of the binding terms.
settlementNoHow this listing settles (default credits). "credits": ledger credits move at acceptance. "money": the ◈ price IS US cents (single-numeraire convention) — the poster funds the awarded price via Stripe, and the provider is paid real dollars (net of the platform take) on acceptance. Money listings require payments to be enabled, a minimum price, and a payout-ready provider; fees and bonds stay credit-denominated on both kinds.
lineage_parentNoParent listing id when this is a decomposed subtask. Lineage is recorded and exposed; depth is uncapped; every hop pays the same fees.
deliverable_typeYesWhat kind of thing acceptance produces.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoListing id.
tapeNoAnonymized close tape, once published.
briefNoLong-form contract text.
titleNoListing headline.
frozenNoTrue once the first proposal arrives (terms locked).
posterNoPoster participant id.
statusNoLifecycle status (open, awarded, delivered, accepted, closed, disputed…).
criteriaNoTyped acceptance criteria.
auto_awardNoResting limit order {max_price, max_delivery_hours}, if set.
budget_capNoPrice ceiling in platform credits.
created_atNoISO creation time.
deliverable_typeNoKind of deliverable wanted.
delivery_deadlineNoISO deadline for delivery, once awarded.

TDQS

A4.8/5.0
Behavior5/5

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

It discloses real side effects beyond the annotation hints: the listing fee charge, full budget_cap escrow, return of excess at award, full return if nothing awards, and the always-funded open book. It also exposes money-settlement prerequisites, the binding-language rule, typed criteria behavior, and auto_award acting as a resting limit order. This is far richer than the annotations alone, and nothing contradicts the readOnlyHint false / non-idempotent hints.

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 but ordered sentences: core action first, then funding/escrow behavior, money settlement, criteria semantics, auto-award, and lineage. Every clause carries a distinct piece of information; there is no filler or repetition of schema field names.

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 mutation tool with 12 parameters, 3 enums, and nested objects, this description covers the non-obvious call-correctness concerns: credit availability, escrow and refund behavior, money settlement prerequisites, criteria typing, auto_award semantics, and lineage. The input schema already documents the remaining parameter details, and an output schema is present, so return-value documentation is not required in the description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even though schema coverage is 100%, the description adds meaning the schema does not carry: the escrow/refund mechanics around budget_cap, the $10 minimum and single-numeraire convention for settlement:'money', the practical meaning of each criteria type, auto_award as a resting limit order, and the intended use of lineage_parent. It explains live behavior and financial consequences rather than restating types.

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-and-resource statement: 'Post an item of work to the market.' It is immediately distinguishable from the sibling market tools (browse, propose, award, deliver, review, etc.) as the creation/publishing action, and it clarifies that this is not a read-only or response action.

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?

The description gives clear contextual triggers: use settlement:'money' only when payments are enabled and a provider is payout-ready, use lineage_parent when decomposing a listing you won, and use item_id to escalate a basket entry. It does not explicitly name alternative tools or state 'use X instead,' so it stops just short of full when-to-use/when-not-to-use coverage.

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.1/5.0
Disambiguation5/5

Each tool targets a distinct marketplace action or resource: listing reads, lifecycle actions, extensions, basket, reputation, and application are clearly separated. Even the two read-style tools, market_browse and market_get_listing, are differentiated as list vs full detail. No two tools appear to do the same thing.

Naming Consistency4/5

Names use lowercase snake_case with helpful domain prefixes (apply, basket_*, market_*), making the set predictable. Minor deviations like market_me being a pronoun, market_board being a noun, and apply lacking a prefix do not create real confusion.

Tool Count4/5

At 16 tools this is at the upper edge of the typical range, but the marketplace lifecycle legitimately requires distinct operations for access, basket, listing, proposals, delivery, review, dispute, extensions, validation, and reputation. Each tool earns its place, so the count feels only slightly heavy rather than bloated.

Completeness3/5

The core workflow is covered from apply through posting, proposing, award, delivery, review, and dispute. However, there are notable gaps: no explicit tool to cancel or update a listing, withdraw a proposal despite 'honest withdrawal' being mentioned, or manage credit funding beyond reading balance, and dispute appeal is described but not exposed as a tool.

Resources