messages_send_email
ActiveTool of io.github.saloprj/dialogbrain
declared in 1.17.0
Compose and send an email — with subject, CC/BCC, and attachments. Use for email; for chat messages (Telegram/WhatsApp/livechat) use messages.send instead.
Parameters schema
{
"type": "object",
"required": [],
"properties": {
"cc": {
"type": "array",
"items": {
"type": "string"
},
"description": "Email addresses to CC. OMIT to skip."
},
"bcc": {
"type": "array",
"items": {
"type": "string"
},
"description": "Email addresses to BCC. OMIT to skip."
},
"text": {
"type": "string",
"description": "Email body."
},
"subject": {
"type": "string",
"description": "Email subject line. Required for new emails; for replies it auto-generates 'Re: ...' when omitted."
},
"attachments": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Array of integer file IDs to attach."
},
"recipient_email": {
"type": "string",
"description": "Recipient email address (e.g. 'john@example.com'). Provide to start a new email thread; OMIT to reply in the current email thread."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries