Google Workspace MCP Server

send_email

Send a new email

Input Schema

NameRequiredDescriptionDefault
bccNoBCC recipients (comma-separated)
bodyYesEmail body (can include HTML)
ccNoCC recipients (comma-separated)
subjectYesEmail subject
toYesRecipient email address

Input Schema (JSON Schema)

{ "properties": { "bcc": { "description": "BCC recipients (comma-separated)", "type": "string" }, "body": { "description": "Email body (can include HTML)", "type": "string" }, "cc": { "description": "CC recipients (comma-separated)", "type": "string" }, "subject": { "description": "Email subject", "type": "string" }, "to": { "description": "Recipient email address", "type": "string" } }, "required": [ "to", "subject", "body" ], "type": "object" }