send_draft
Send pre-written email drafts directly from Gmail MCP using the draft ID. Simplify email workflows by eliminating manual steps in finalizing and dispatching messages.
Instructions
Send an existing draft
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the draft to send |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the draft to send",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}