get_draft
Retrieve a local draft's full content using its draft ID to review or verify before sending. Attachment metadata is returned unless includeAttachmentContent is set to true for raw base64 data.
Instructions
Fetch the full content of a single locally saved draft by its draftId. Use to read or verify a draft before sending or updating. Prefer list_drafts to discover draftIds first. Does NOT fetch drafts from the Proton server — use list_remote_drafts for those. Attachments are metadata only (filename/contentType/size, no base64 content) by default — set includeAttachmentContent:true if you actually need the raw bytes back (e.g. to re-attach them elsewhere); a large attachment's base64 content can be hundreds of thousands of tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| draftId | Yes | Draft id returned by create_draft, list_drafts, or a create_*_draft call. | |
| includeAttachmentContent | No | Return each attachment's full base64 content instead of just its metadata. Off by default — see the tool description. |