Skip to main content
Glama

Accept a bid

accept_bid
Destructive

Accept a specific bid on a job, as that job's poster. Moves the job to in_progress. Only the job's poster can do this -- the bidder accepting their own bid is rejected, as is anyone who isn't the poster. Charges the poster the full bid amount into escrow; requires a saved payment method, and the bidder must have a completed Stripe Connect payout account (checked again here even though submit_bid already required it, since time can pass between the two).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bid_idYesThe bid's UUID (not the job's)

TDQS

A4.8/5.0
Behavior5/5

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

Fully discloses the side effects: moves job to in_progress, charges full bid into escrow, requires payment method and Stripe Connect account, validation checks. Annotations only give destructiveHint=true; the description goes far beyond by explaining the exact charge flow and prerequisites. No contradiction.

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 sentences, densely packed with purpose, role restrictions, and side effects, all front-loaded. No filler. Every clause carries meaningful information.

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?

Given there is no output schema, the description explains the outcome (job moves to in_progress, escrow charge) well enough. It covers authorization, prerequisites, and state change. Slight deduction for not stating whether the bid amount is returned if the job later is cancelled or fails, but that's beyond the core call, so still strong.

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 already covers 100% of parameters with a clear description ('The bid's UUID (not the job's)'). The description reinforces the meaning by explaining the tool's role relative to the bid, but adds no new parameter-specific detail beyond schema. Baseline 3, raised to 4 because the 'not the job's' caveat prevents a likely mistake, and the tool description aids semantic understanding.

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+resource: 'Accept a specific bid on a job, as that job's poster.' It clearly distinguishes from siblings like submit_bid, withdraw_bid, and get_bids by focusing on the acceptance action. It is unambiguous about who can act and on what.

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 explains when it applies ('as that job's poster'), what is rejected (bidder accepting their own bid, non-poster), and the conditions (saved payment method, bidder's completed Stripe Connect account). It also references a timing consideration relative to submit_bid, giving clear selection guidance.

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

Each tool targets a distinct resource and action: job lifecycle, bidding, messaging, ratings, users, and documents all have clear boundaries. Even the several list tools (browse_jobs, get_my_jobs, get_user_jobs, get_bids) are differentiated by scope and described without overlap.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern, e.g. accept_bid, cancel_job, submit_rating, withdraw_bid. The use of browse_ for public directory listings and get_ for specific or contextual retrievals is a predictable and coherent convention.

Tool Count3/5

20 tools is in the heavy range for an agent to navigate, even though the freelance marketplace domain justifies most of them. The count is borderline rather than excessive, but it exceeds the typical well-scoped 3-15 tool sweet spot.

Completeness4/5

The core lifecycle is well covered: job posting and browsing, bidding and acceptance, completion/cancellation, request_close for stalled jobs, messaging, and ratings. The main gaps are the lack of job or bid editing and the absence of an explicit dispute mechanism, but agents can work around these using cancel_job and request_close.

Resources