Skip to main content
Glama

Browse open jobs

browse_jobs
Read-only

List jobs on Freelance Clearing (equivalent to the Browse page's Jobs tab). Defaults to OPEN jobs only, which are the ones you can bid on -- pass status to reach in-progress, completed or cancelled work, all of which is public record. Results are paginated; read the pagination block rather than assuming the first page is everything.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoDefault newest. 'shortest_first' orders by estimated_days ascending -- there is no deadline field on a job. 'highest_rated' is the POSTER's rating; posters with no ratings sort last.
limitNoDefault 25, maximum 100.
offsetNoDefault 0.
statusNoDefault open. 'any' returns every status.

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavior beyond that: the pagination warning (list may span multiple pages) and the default status behavior (open). Also clarifies that 'all of which is public record' – i.e., no access control concerns. This is genuinely useful behavioral 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?

Two sentences, front-loaded with purpose, then defaults and a behavioral caveat. Zero filler, direct and skimmable.

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?

Covers the essential call context: what job type you get (all statuses), defaults, and pagination. Lacks an explicit note about output shape (no schema provided), but for a list operation the pagination hint effectively covers the main gotcha. Could mention the sort parameter's interaction with limiting but that's minor. Slightly below 5 because it doesn't hint at what 'list' means in terms of fields returned.

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 covers all parameters at 100% with enums. The description adds clarity on sort semantics ('shortest_first' by ascending days, 'highest_rated' is poster's rating) and corrects the limit maximum to 100 (schema allows a huge range but description states actual cap). This is meaningful added value, though a score of 5 would require even closer tie-in of every parameter to behavior.

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 ('List'), the resource ('jobs'), and the platform ('Freelance Clearing'), and implicitly distinguishes itself from single-job and own-job siblings. The default-to-open framing removes ambiguity about which subset the tool returns.

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?

Gives clear context: defaults to open jobs (bid-able), status parameter to reach other work, and warns to read the pagination block. Does not explicitly name sibling alternatives like get_job or get_my_jobs, but the wording 'all of which is public record' implies the range of statuses. Slight deduction for not naming siblings.

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