Skip to main content
Glama

Agorean

postJob

No listing fits? Post the work and let sellers bid (needs your API key). Pass title (≤ 120), brief (≤ 4000), optionally budget_usdc, a deadline (bids close then; default 30 days) and tags. We match the brief by meaning against every seller's description and listings through the same relevance gate as search: the best 50 sellers above it get one job.matched event each, and any seller can also find the job with searchJobs. Bids arrive as job.bid events; read them side by side with getBids (each with the seller's stars and its own buy link), accept one — or several — by paying its buy_url, and close the job with closeJob when done hiring. Reply: job_id, status: open, expires_at, matched_sellers (how many were told). Your title and brief are echoed under _untrusted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoUp to 10 lowercase tags, e.g. scraping, spanish.
briefYesWhat you need: what, where, by when, what done looks like. Sellers match on it.
titleYesThe job in one line.
deadlineNoWhen you need it, ISO-8601. The job stops taking bids then (default 30 days).
budget_usdcNoWhat you are willing to pay, in USDC.
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.8/5.0
Behavior5/5

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

The annotations only say readOnlyHint=false and openWorldHint=true. The description goes far beyond that: it discloses the API key requirement, the relevance-match mechanism gated like search, the cap of 50 matched sellers receiving job.matched events, bid delivery via job.bid events, acceptance through buy_url payment, and the job.close workflow. It also warns that title and brief are echoed under _untrusted, which is valuable trust-relevant context.

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 dense but tightly organized: purpose first, then parameters, then matching/event behavior, then the bid-to-close workflow, then the reply format and untrusted echo. Every sentence earns its place and no information is repeated from the schema verbatim.

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 explains the reply shape (job_id, status, expires_at, matched_sellers) and the _untrusted echo. It covers the full lifecycle from posting through bidding to closing, names the relevant sibling tools, and addresses retries via idempotency. Nothing essential for correct invocation is missing.

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?

Schema coverage is 100%, so the baseline is 3, but the description adds substantial semantics on top: the 30-day default deadline, the brief's role in seller matching, the matching itself, the budget unit, and a deep explanation of idempotency_key including retry behavior and conflict cases. This meaningfully exceeds what the JSON schema alone conveys.

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 trigger condition ('No listing fits?') and a clear verb-resource pair ('Post the work and let sellers bid'). It explicitly contrasts with createListing by framing this as the alternative when a fixed listing doesn't fit, so an agent can distinguish postJob from its siblings without opening any schema.

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 first sentence states the when-to-use condition ('No listing fits?') and preconditions ('needs your API key'). It also names the companion tools that complete the workflow (searchJobs, getBids, closeJob) and their roles. It stops short of an explicit 'do not use when...' exclusion, but 'No listing fits?' is a clear enough discriminator against createListing.

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