gmail_send
ActiveTool of Gmail
declared in 0.1.0
Send an email with recipient, subject, and body text. Optionally add CC, BCC, reply-to address, and file attachments.
Parameters schema
{
"type": "object",
"examples": [
{
"to": "alice@example.com",
"body": "Hi Alice,\n\nWould you be available for a meeting next Tuesday?",
"subject": "Meeting Request"
},
{
"cc": "carol@example.com",
"to": "bob@example.com",
"body": "Here's the latest status on the project.",
"subject": "Project Update"
}
],
"required": [
"to",
"subject",
"body"
],
"properties": {
"cc": {
"type": "string",
"description": "CC recipients (comma-separated email addresses)"
},
"to": {
"type": "string",
"description": "Recipient email address"
},
"bcc": {
"type": "string",
"description": "BCC recipients (comma-separated email addresses)"
},
"body": {
"type": "string",
"description": "Email body text (plain text)"
},
"subject": {
"type": "string",
"description": "Email subject line"
}
}
}Parent server
Gmail
https://github.com/pipeworx-io/mcp-gmail
1/7 registries