Skip to main content
Glama

Get a user's jobs

get_user_jobs
Read-only

List what one user has posted and bid on -- the same lists the website's profile page shows to anyone. Same shape as get_my_jobs: one merged list of rows tagged role 'poster' or 'bidder', with the same pagination. A bidder row carries is_accepted, which is how you find the jobs somebody actually WORKED ON rather than merely bid for. Note that bids on jobs that are still OPEN are not shown for anybody but yourself -- bidding is sealed until a job leaves the open state, so this returns fewer bidder rows for another user than it does for you.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleNoDefault both. Same values get_my_jobs takes.
limitNoDefault 25, maximum 100.
offsetNoDefault 0.
statusNoDefault any.
usernameYesThe user's public username, not their UUID

TDQS

A4.6/5.0
Behavior5/5

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

Annotations only declare read-only status, so the description carries the behavioral load. It discloses that responses include a `is_accepted` field on bidder rows, that results are paginated in a specific way, and that open bids are sealed for other users. This goes well beyond the schema and helps an agent interpret returned data.

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 a single, well-paced paragraph that leads with the core purpose and ends with a crucial caveat about sealed bids. Every clause adds value: the reference to get_my_jobs clarifies the shape, and the bid-sealing note prevents misinterpretation. It's informative without being bloated.

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?

For a filtered list endpoint with five parameters and no output schema, the description appropriately references get_my_jobs for the full response shape while highlighting the subtle is_accepted field and pagination behavior. It covers typical usage, edge cases (open bids), and points to a sibling for schema details. The only minor gap is not restating the complete field list, but that's available in the sibling's definition.

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?

Input schema already documents all five parameters with strings like 'Default both. Same values get_my_jobs takes.' and appropriate enums, so the baseline is 3. The description adds no new parameter-level detail; its discussion of role tags refers to response rows, not request parameters. Therefore the schema carries full semantic weight.

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 object ('List what one user has posted and bid on'), clearly identifying the resource as another user's activity. It distinguishes itself from the sibling get_my_jobs by referencing the same shape and highlighting the difference in bidder data visibility. This makes its purpose unambiguous relative to browse_jobs or get_my_jobs.

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?

The description explicitly names get_my_jobs as a comparison point and explains the key difference: sealed bids on open jobs are hidden for other users but visible for oneself. This tells the agent when to expect different results and implies this tool is appropriate for viewing another user's public job activity. It doesn't explicitly blacklist other alternatives, but the guidance is clear.

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