Skip to main content
Glama

Ask the owner to approve a draft

request_approval
Idempotent

Mark a draft in the Drafts folder as waiting for the mailbox owner to approve and send it. Use this after draft_reply, draft_forward or draft_email when the person you are helping may not send from this mailbox, or wants the owner to check a message before it goes: the owner's assistant sees it under list_pending_approvals and sends it with approve_and_send, which files the Sent copy and removes the draft the way any mail client does. The draft stays in Drafts, unsent and editable, until then. Refuses a uid that is not a draft in the Drafts folder. There is no tool to send a draft back for changes: the owner replies to the person as they would to anybody.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesThe UID of the draft, from the tool that saved it or from list_emails on Drafts.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.8/5.0
Behavior5/5

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

Annotations declare a non-read-only, idempotent, non-destructive mutation, and the description enriches that with the full lifecycle: the draft remains in Drafts unsent and editable, the assistant sees it via list_pending_approvals, approve_and_send files the Sent copy and removes the draft, and invalid uids are refused. This adds state-transition and side-effect detail well beyond the annotation flags.

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?

Purpose is front-loaded in the first sentence, followed by usage condition, lifecycle, and failure behavior in a compact block. It is somewhat long, and the closing note about there being no 'send back for changes' tool is tangential, but each sentence carries actionable content.

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 single-parameter mutation with no output schema, the description supplies everything needed: when to call it, what state results, who acts next, how the state resolves, and what input is rejected. No annotation or schema gap is left uncovered.

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

Parameters4/5

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

Schema coverage is 100% with a single uid parameter, so the baseline is 3. The description adds a genuine constraint the schema does not encode: the uid must identify a draft in the Drafts folder or the call is refused, which sharpens valid-value selection beyond 'UID of the draft'.

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?

States a specific verb and resource ('Mark a draft ... as waiting for approval') and immediately scopes it relative to siblings, naming the drafting tools it follows and the downstream tools (list_pending_approvals, approve_and_send) that consume the state. An agent can distinguish this from draft_* and send_email without opening any schema.

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?

Gives explicit when-to-use conditions: after draft_reply/draft_forward/draft_email, when the user cannot send from this mailbox or wants owner review. It also names the alternative path (owner replies manually) and the failure boundary (refuses non-Draft uids), so routing is unambiguous.

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.

Resources