MCP Headless Gmail Server

gmail_send_email

Send emails via Gmail using a headless server. Authenticate with a Google OAuth2 token, specify recipient, subject, and body. Supports plain text or HTML content for streamlined email delivery.

Instructions

Send an email via Gmail

Input Schema

NameRequiredDescriptionDefault
bodyYesEmail body content (plain text)
google_access_tokenYesGoogle OAuth2 access token
html_bodyNoEmail body content in HTML format (optional)
subjectYesEmail subject
toYesRecipient email address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "Email body content (plain text)", "type": "string" }, "google_access_token": { "description": "Google OAuth2 access token", "type": "string" }, "html_body": { "description": "Email body content in HTML format (optional)", "type": "string" }, "subject": { "description": "Email subject", "type": "string" }, "to": { "description": "Recipient email address", "type": "string" } }, "required": [ "google_access_token", "to", "subject", "body" ], "type": "object" }

You must be authenticated.

Other Tools from MCP Headless Gmail Server

Related Tools

ID: rd8xm8mnxn