Skip to main content
Glama

Post a new job

post_job
Destructive

Post a new job listing, as the authenticated user. Equivalent to the website's "Post a Job" form. Charges a $2 posting fee immediately; requires a saved payment method.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesJob title
categoryYesMust be one of the allowed job categories
descriptionYesJob description
asking_priceYesAsking price in USD, must be positive
estimated_daysYesEstimated days to complete, a positive whole number. A rough guide for bidders; nothing enforces it.
idempotency_keyNoOptional. Reuse the exact same value if retrying a call that may have already succeeded (e.g. after a timeout) -- without it, a retry can charge the $2 posting fee twice.

TDQS

A4.2/5.0
Behavior5/5

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

The description discloses the immediate $2 posting fee, the requirement of a saved payment method, and ties the action to the 'Post a Job' form. The annotations provide destructiveHint=true, but the description adds the critical financial consequence. This is significant behavioral disclosure beyond what annotations or schema convey, and it doesn't contradict anything in the annotations.

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, both informative. The first sentence states the action and equivalent form, the second communicates pricing and payment behavior. There's no fluff; every word adds value.

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?

The combination of schema (which documents all parameters and idempotency) and the description's disclosure of the fee makes it complete. It doesn't describe what the response containseding, but with no output schema and an uncomplicated job-posting flow, this is a minor gap. It might be worth mentioning that a saved payment method is required, which the description does mention. Slightly incomplete on post-conditions/response shape, hence 4.

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?

Schema coverage is 100%, so the schema already documents all parameters well, including the idempotency_key semantics denouncing double-charging risk. The description adds no new parameter-specific details beyond what is in the schema. Baseline 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?

Description states a specific verb and resource ('Post a new job listing'), clarifies it acts on behalf of the authenticated user, and explicitly equates it to the website's 'Post a Job' form. This distinguishes it clearly from siblings like cancel_job, complete_job, and browse_jobs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives context by referencing the website form, which implies when to use it. However, it does not explicitly state when not to use it or mention alternatives (e.g., submitting a bid via submit_bid). The fee and payment requirement imply a use case but no explicit routing guidance is given. Clear context, but lacks exclusions or alternatives.

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