Skip to main content
Glama

Get bids on a job

get_bids
Read-only

List the bids on a job. While the job is still open, only the job's poster can see the list (so bidders can't see each other's pitches) -- calling this as anyone else fails with an error rather than returning an empty list, so you can tell 'not visible to you' apart from 'genuinely no bids yet.' Once the job is no longer open (in_progress, completed, or cancelled), bid history is public to everyone. Each bid includes the bidder's rating average and count.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job's UUID

TDQS

A4.5/5.0
Behavior5/5

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

Annotations only provide readOnlyHint=true, but the description adds rich behavioral information: non-poster callers during an open job receive an error rather than an empty list, post-close visibility becomes public, and each bid includes the bidder's rating average and count. This goes well beyond the annotation and clarifies user-visible semantics.

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 compact and information-dense: each sentence adds distinct value about scope, state-dependent visibility, error behavior, or return contents. While it is longer than a one-liner, the extra length is justified by genuinely useful rules about who can see what.

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 single-parameter, read-only list tool with no output schema, the description covers what is needed to call it correctly: the job identifier, access restrictions, state transitions, error-versus-empty behavior, and the rating fields included in the response. Nothing essential is missing at this tier of complexity.

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?

There is a single param, job_id, and the schema already covers it with type, format, and a clear description at 100% coverage. The description does not add parameter-level meaning beyond saying the bids are 'on a job,' so the baseline score of 3 applies.

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 starts with a specific verb and resource: 'List the bids on a job.' It makes the tool's scope clear by tying the resource to job_id, and the detailed visibility rules help distinguish it from broader browsing tools like browse_jobs or get_job.

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 context for when calls succeed and fail: during an open job only the poster can see bids, and after closure the bid history is public. It also explains the error-versus-empty behavior. It stops short of naming explicit alternatives or saying 'use X instead,' so it is very strong but not a perfect 5.

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