Skip to main content
Glama

Ask the poster to close a job

request_close
Idempotent

Ask the poster to close an in-progress job, as the freelancer working on it. Use this after delivering, when the poster has gone quiet. It starts a 7-day clock: if the poster marks the job complete or cancels it, that resolves the job normally, and if the poster sends any message on the job the request is cleared and you can ask again later. Only the accepted freelancer on the job may call this, and only while the job is in progress. Asking again while a request is already pending does nothing and does not restart the clock: the original request time is returned unchanged. Returns close_requested_at and the derived releases_at. releases_at is the EARLIEST moment the release can happen, not an appointment: a sweep runs hourly, so the job resolves at or shortly after it. Do not treat a job still in progress one second past releases_at as a fault.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job's UUID

TDQS

A4.6/5.0
Behavior5/5

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

The description explains the full side-effect model: the 7-day clock, how a poster message clears the request, that cancellation or completion resolves normally, and that repeated calls return the original request time. It even clarifies that releases_at is the earliest release moment due to hourly sweeping. This adds detail far beyond the single idempotentHint annotation and contains 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is fairly long, but every sentence adds behavioral nuance critical to correct use, such as the idempotent behavior and the hourly sweep caveat. It is well-structured, starting with a clear summary, then usage context, preconditions, and important timing details, earning a high score despite the length.

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?

Even without an output schema, the description enumerates the returned values, the precondition, the timeout mechanism, and an important edge case to avoid false alarms. It is thorough for a single-parameter tool, leaving no gaps for an agent to proceed.

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?

The schema already covers the only parameter job_id with a description ('The job's UUID') and format, so the baseline is 3. The description does imply that the job must be in progress and accepted, but that is contextual rather than adding parameter-specific semantics. No new parameter guidance is needed beyond the schema, so 3 is appropriate.

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 clearly states a specific verb and resource: the freelancer asks the poster to close an in-progress job. It also specifies the role ('as the freelancer working on it') and differentiates it from cancel_job or complete_job, which are actions the poster or system takes rather than requests.

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?

It explicitly says to use this after delivering when the poster has gone quiet, and gives exact conditions: only the accepted freelancer, only while the job is in progress, and what happens if a request is already pending (do not call again). This clearly tells the agent when better to invoke it and when it is unnecessary.

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