Perform transactional email operations including sending emails, managing templates, and tracking events using the Brevo MCP Server for effective email management.
Instructions
Transactional email operations - send emails, manage templates, track events
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days for statistics | |
No | Email address for event filtering | ||
endDate | No | End date for statistics (YYYY-MM-DD) | |
htmlContent | No | HTML content of the email | |
messageId | No | Message ID for event tracking | |
operation | Yes | Email operation to perform | |
params | No | Template parameters for personalization | |
sender | No | Sender information | |
startDate | No | Start date for statistics (YYYY-MM-DD) | |
subject | No | Email subject | |
tag | No | Tag for filtering statistics | |
templateData | No | Template data for create/update operations | |
templateId | No | Template ID for template operations | |
textContent | No | Text content of the email | |
to | No | Recipients list |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "Number of days for statistics",
"type": "number"
},
"email": {
"description": "Email address for event filtering",
"type": "string"
},
"endDate": {
"description": "End date for statistics (YYYY-MM-DD)",
"type": "string"
},
"htmlContent": {
"description": "HTML content of the email",
"type": "string"
},
"messageId": {
"description": "Message ID for event tracking",
"type": "string"
},
"operation": {
"description": "Email operation to perform",
"enum": [
"send",
"send_template",
"get_events",
"get_templates",
"create_template",
"update_template",
"delete_template",
"get_blocked_domains",
"get_email_statistics"
],
"type": "string"
},
"params": {
"description": "Template parameters for personalization",
"type": "object"
},
"sender": {
"description": "Sender information",
"properties": {
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"startDate": {
"description": "Start date for statistics (YYYY-MM-DD)",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"tag": {
"description": "Tag for filtering statistics",
"type": "string"
},
"templateData": {
"description": "Template data for create/update operations",
"type": "object"
},
"templateId": {
"description": "Template ID for template operations",
"type": "number"
},
"textContent": {
"description": "Text content of the email",
"type": "string"
},
"to": {
"description": "Recipients list",
"items": {
"properties": {
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"operation"
],
"type": "object"
}