Skip to main content
Glama
JulienRabault

icloud-mail

Save Draft

save_draft

Prepare an email draft in the user's Drafts folder without sending it, allowing human review before dispatch. Use this when content should be reviewed in the mail client before being sent.

Instructions

Prepare un brouillon dans le dossier Drafts, sans rien envoyer.

Alternative sure a send_email : le message apparait dans le client mail de l'utilisateur, qui relit et envoie lui-meme. A privilegier chaque fois que le contenu merite une relecture humaine avant depart.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ccNoDestinataires en copie
toYesDestinataires
subjectYesSujet du message
body_textYesCorps du message en texte brut
attachmentsNoChemins de fichiers locaux a joindre
in_reply_toNoMessage-ID auquel ce brouillon repond

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYes
sentNoToujours faux : un brouillon ne part pas
folderYes
subjectYes
message_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It covers key traits: no message is sent, the draft appears in the user's mail client, and the user reviews and sends it. It could add more detail about side effects or permissions, but the central safety-relevant behavior is explicit.

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 with no filler: the first front-loads the core purpose and no-send guarantee, the second provides the comparison to send_email and the usage condition. Every sentence earns its place.

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?

For a 6-parameter tool with an output schema, this description is complete enough: it states purpose, behavior, alternatives, and when to choose the draft path. Minor gaps such as explicit prerequisites or exclusions are not critical because the schema covers the parameters and an output schema exists.

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%, so the parameters are already documented in the input schema. The description adds no parameter-specific meaning beyond that, so the 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?

The description states a specific action and resource: 'Prepare un brouillon dans le dossier Drafts, sans rien envoyer'. It clearly distinguishes itself from send_email by calling itself a safe alternative, so an agent can identify this tool's purpose without opening the 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?

It explicitly names send_email as the alternative and gives a concrete selection rule: prefer this tool whenever the content deserves human review before departure. This is direct when-to-use guidance with an explicit alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.