Skip to main content
Glama

Invoke — hire a human from your AI agent (first post free)

Hire human (alias)

hire_human

Alias for post_task. Use when the agent should stop guessing and hire a human. First post is free with no payment required and returns a live task_url; later posts return pending_payment plus checkout_url/payment_url.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesRequired. Short public task title for the human worker, 1-200 chars. Make the real-world outcome obvious, e.g. 'Call 5 restaurants for patio availability'.
categoryNoOptional routing category such as phone_calls, real_world_photo, human_verification, local_errand, QA_testing, research, or judgment_review.
descriptionYesRequired deliverable/brief, 1-2000 chars. Say exactly what the human should do, what evidence or answer to return, and any deadline/context.
reward_centsYesRequired worker reward in USD cents, 1000-50000 ($10-$500). The first post for a new contact_email has no platform-fee checkout and goes live free.
contact_emailYesRequired valid poster email for updates and first-post-free eligibility. Use the user's/operator's email, not a fake address.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
paidNoTrue when the task is already treated as paid/open.
statusYesTask status: 'open' means the first-post-free task is already live; 'pending_payment' means pay checkout_url/payment_url to activate a later post.
messageNoHuman-readable success message for the calling agent to show the user, including task_url when the first task is free and live.
task_idYesInvoke task identifier.
task_urlNoLive public task URL humans can apply to. Present on first-post-free success; report this URL back to the user.
fee_waivedNoTrue when Invoke waived the first platform fee and published the task immediately.
status_urlNoCount-only task status endpoint where agents can poll applicant_count after posting.
payment_urlNoAlias for checkout_url for later posts only.
checkout_urlNoCheckout URL for later posts only. First-post-free responses do not need payment and instead include task_url.
next_post_urlNoPrefilled web URL for posting the next paid task after the free first post.
applicant_countNoCurrent count of distinct humans who have applied to this task.
someone_appliedNoTrue when applicant_count is greater than zero.
platform_fee_centsYesPlatform fee due before activation, in USD cents. First-post-free responses return 0.
next_post_checkout_urlNoCheapest one-click platform-fee checkout shortcut for a follow-up paid post.
next_post_reward_centsNoCheapest starter reward amount for the suggested next paid task.
post_another_instructionNoReady-to-relay instruction explaining how to post the next paid task and where to pay.
next_post_platform_fee_centsNoCheapest platform-fee tier for the suggested next paid task.

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations, the description discloses the critical first-post-free behavior, the live task_url return, and the pending_payment behavior with checkout_url/payment_url on later posts. This is exactly the kind of cost and workflow context an agent needs and is not visible 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?

The description is compact and front-loaded: it states the alias, the invocation trigger, and the payment/response behavior in two sentences. Every sentence contributes useful information with no repetition or filler.

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 simple alias tool with a complete parameter schema, an output schema, and annotations, the description covers the essential behavioral differences between the first and subsequent posts. An agent has enough context to invoke the tool and predict what will happen.

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 description coverage is 100%, and individual parameters already carry detailed descriptions. The tool description itself adds no new parameter-level detail, so the baseline score of 3 is appropriate; it does not need to compensate for schema gaps.

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 states the tool is an alias for post_task and that its purpose is for the agent to stop guessing and hire a human. It names the resource and the behavior directly, and reading it tells an agent exactly when to invoke it.

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 a clear trigger condition ('when the agent should stop guessing and hire a human') and points to the underlying post_task tool. It does not explicitly contrast with the sibling post_human_task, but the alias reference makes the intent sufficiently 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

A3.7/5.0
Disambiguation1/5

All three tools are aliases for the same post_task operation, so there is no meaningful distinction between them. An agent choosing among hire_human, post_human_task, and post_task is selecting the same action under different names.

Naming Consistency2/5

The names all use a verb_noun shape, but the verbs differ (hire vs post) and the nouns are inconsistent (human, human_task, task). The pattern is not predictable and the names suggest different operations rather than aliases.

Tool Count2/5

Three tools may seem like a reasonable count, but they expose only one underlying operation. The aliases inflate the surface and make the server feel redundant; a single well-named post_task tool would be more appropriate.

Completeness5/5

For the stated domain of posting a task for a human, the operation covers creation, first-post fee waiver, payment flow, and returns a live task URL. Task management such as update or cancel is outside the declared purpose, so no obvious gap exists.

Resources