Skip to main content
Glama

AI SENSE Free Public Tools

Request human approval

create_human_approval

Put a decision in front of a real person and wait for their answer. Creates a web form and returns form_url to send to whoever should decide, plus an action_id for reading the reply. Use it to get sign off before an irreversible or costly step, or when a policy requires a named human to approve. The point of difference: the approver does not have to be the person operating this client - it can be a manager, a customer or a colleague on another device, in another country, and they need no account and no login to answer. No API key, no account and no sign up: call it directly. Poll for the reply with read_human_approval. The form expires 24 hours after creation, so it does not suit a decision that can wait longer than that.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesRequired. The question shown to the person, in their language. Make it answerable on its own, since they see no conversation history.
optionsNoOptional. The buttons offered, 2 to 10 of them. Defaults to Approve and Reject. Use your own labels when the choice is not a yes or no, for example Ship today, Ship Monday, Cancel.
allow_noteNoOptional. Whether the person may add a free text comment alongside their choice. Defaults to true.
descriptionNoOptional supporting detail below the question: what changes, what it costs, what happens if they decline.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
form_urlYes
action_idYes
result_urlYes
expire_datetimeYes
expire_timestampYes

TDQS

A4.5/5.0
Behavior4/5

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

The description reveals key behavioral traits: it creates a web form, returns form_url and action_id, requires no API key/account/signup for creating the form, and expires after 24 hours. Since no annotation metadata is provided, the description carries this burden well, though it stops short of mentioning other edge cases such as rate limits or fallback behavior if no response is received.

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 with the purpose. Each sentence contributes distinct value: purpose, returned values, when-to-use, a unique benefit, authentication details, follow-up step, and expiry limitation. There is no redundant 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?

The description provides the complete calling context: what the tool creates, how to distribute the form, how to retrieved the result via read_human_approval, and the time expiration limits. It also specifies that the approver needs no account or login, which helps the agent understand the full flow even without an output schema.

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 input schema already documents all four parameters (title, options, allow_note, description) with thorough descriptions. The tool description does not add parameter-specific guidance, but it adds value in explaining the flow (title for the question, options as button labels, etc.). This matches the baseline for a schema with high coverage.

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 opening sentence clearly describes the tool's action: putting a decision in front of a real person and waiting for their answer. It then specifies the concrete artifacts produced (form_url, action_id) and differentiates from the read_human_approval sibling, noting the approval may be from someone other than the person operating the client.

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 states when to use the tool ('Use care to get sign-off before an irreversible or costly step, or when a policy requires a named human to approve') and when not to use it ('the form expires 24 hours after creation, so it does not suit a decision that can wait longer than that'). It also directs the agent to poll for the reply with read_human_approval, providing a clear workflow.

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
Disambiguation4/5

Each tool is centered on a distinct resource or action, and the read_* tools clearly map to their create_* counterparts. The main source of ambiguity is create_agent_wake, which overlaps conceptually with create_human_approval and create_webhook_capture because it also involves webhooks and human form replies.

Naming Consistency5/5

Tool names consistently follow a verb_noun pattern in snake_case, with clear create_*/read_* pairs and standalone helpers like generate_uuid and get_current_time. No mixed casing or arbitrary verb styles appear.

Tool Count5/5

Ten tools is a well-scoped size for a general-purpose public utility server. Each tool covers a distinct need, and the collection feels intentionally curated rather than bloated or sparse.

Completeness4/5

The create/read pairs provide reasonable coverage for approvals, webhook capture, and temporary storage, plus useful standalone utilities. The noticeable gaps are missing cancellation, deletion, or status operations for agent wakes and temporary resources, but these do not severely cripple typical workflows.