Skip to main content
Glama

Human For AI

Submit a task to the human

submit_human_task

Submit a task for the human operator to perform in the real world. Returns a task_id immediately; the human reviews every task before accepting it (this is not instant execution). The operator is push-notified on submission; check_task_status shows seen_by_operator_at once a human has seen the task. Free during the pilot. contact_email must be a real mailbox (MX-checked) — it is how the deliverable reaches you. No mailbox? Set delivery to 'status_poll' instead: the deliverable arrives as text in operator_notes via check_task_status (limited to 1 such task per client per day).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deadlineNoISO 8601 datetime, e.g. 2026-07-10T12:00:00+03:00
deliveryNoHow the deliverable reaches you. 'email' (default) needs contact_email. 'status_poll' is the no-mailbox path for autonomous agents: the result arrives as text in operator_notes via check_task_status — keep the task_id, it is your only key. Budget: 1 status_poll task per client per day.
requesterNoYour agent or system identifier, e.g. my-agent/1.0
task_typeYesService category — see get_human_services for descriptions. The list is not exhaustive: use custom_human_in_the_loop for anything that fits no other category
descriptionYesWhat to do, where, and what success looks like. Specific, self-contained tasks are accepted faster.
contact_emailNoWhere the deliverable and clarifying questions are sent. Required unless delivery is 'status_poll'. Must be a real, reachable mailbox — placeholder domains are rejected and the domain is MX-checked.
output_formatNotext_report (default), text_report_with_photos, structured_json, annotated_screenshots, or video
location_detailNoCity, address, or area — required in practice when location_required is true
location_requiredNotrue if the task needs physical presence (coverage is confirmed at review)

TDQS

A5/5.0
Behavior5/5

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

Annotations give only basic hints (not read-only, not idempotent, not destructive). The description adds substantial behavioral context: the human review means execution is not instant, the operator is push-notified on submission, contact_email is MX-checked and placeholder domains are rejected, and status_poll delivers results via operator_notes with a one-per-client-per-day limit. This exceeds the annotation burden meaningfully.

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 yet dense with useful information. It front-loads the most important behavioral caveat (not instant execution) and then flows naturally through tracking, pricing, and delivery options. Every sentence earns its place; there is no redundancy 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 9-parameter tool with no output schema, the description is remarkably complete. It covers the submission lifecycle, the asynchronous review model, how the deliverable reaches the agent, fallback behavior for mailbox-less agents, and the rate limit. An agent has enough context to call the tool correctly and set expectations about the async result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers all 9 parameters (100% coverage), but the description adds crucial semantic detail beyond the schema: it clarifies the relationship between delivery and contact_email (no mailbox means use status_poll), explains that a task_id is the only key for tracking the deliverable, and notes that location_detail is 'required in practice' when location_required is true. This is valuable guidance the schema alone does not provide.

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 a specific verb ('submit') and resource ('a task for the human operator to perform in the real world'). It immediately differentiates from the sibling status-check tools by noting it returns a task_id immediately while the human reviews before accepting. This clearly distinguishes the submission action from check_task_status and other sibling tools.

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 tells the agent when to use this tool (submit a real-world task) and when to use the alternative (check_task_status to track progress). It also routes the agent to get_human_services for task_type category descriptions, and explains the delivery-mode alternatives for agents with or without a mailbox, including the status_poll budget constraint.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: discovery, structured task submission/status, free-form messaging, and threaded replies. Potential overlaps like submit vs. message vs. reply are clearly separated by input requirements and response types.

Naming Consistency4/5

All names are snake_case and action-first, which makes them predictable as a set. The only minor deviation is 'reply_in_message_thread' including a preposition, but it remains clear and consistent in style.

Tool Count5/5

Six tools is well-scoped for the service: one discovery tool, two task lifecycle tools, and three messaging/thread tools. There is no redundant surface area.

Completeness4/5

The core lifecycle is covered: discover, submit, poll, receive verification, and exchange follow-up messages. The main gap is the lack of an explicit cancel or amend task operation, though agents can work around it by messaging the operator.