Gmail

gmail_send_message

Send an email message. Supports plain text and HTML body, CC, BCC, and replying to threads.

Remote node2flow/gmail-mcp

Other tools also called gmail_send_message? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "cc": {
      "type": "string",
      "description": "CC recipient(s), comma-separated"
    },
    "to": {
      "type": "string",
      "description": "Recipient email address(es), comma-separated for multiple"
    },
    "bcc": {
      "type": "string",
      "description": "BCC recipient(s), comma-separated"
    },
    "body": {
      "type": "string",
      "description": "Plain text body of the email"
    },
    "html": {
      "type": "string",
      "description": "HTML body (sent as multipart/alternative with plain text)"
    },
    "subject": {
      "type": "string",
      "description": "Email subject line"
    },
    "thread_id": {
      "type": "string",
      "description": "Thread ID to add this message to (for replies)"
    },
    "references": {
      "type": "string",
      "description": "References header for threading (space-separated Message-IDs)"
    },
    "in_reply_to": {
      "type": "string",
      "description": "Message-ID header of the message being replied to"
    }
  }
}
          

Provider

Gmail →