Transactional email and SMS API platform.
## Mailjet MCP Server: Email Delivery & Marketing The **Mailjet MCP Server** integrates Mailjet's email platform into Google Antigravity. This provides transactional and marketing email capabilities with real-time collaboration on email templates. ### Why Mailjet MCP? Mailjet combines delivery with design: - **High Deliverability**: 99% inbox placement - **Real-Time Collaboration**: Team template editing - **A/B Testing**: Optimize email performance - **Segmentation**: Targeted campaigns - **GDPR Compliant**: European data protection ### Key Features #### 1. Send Email ```python from mailjet_rest import Client mailjet = Client(auth=(api_key, api_secret), version="v3.1") result = mailjet.send.create(data={ "Messages": [{ "From": {"Email": "noreply@example.com", "Name": "MyApp"}, "To": [{"Email": "user@example.com", "Name": "John"}], "Subject": "Welcome to MyApp!", "HTMLPart": "<h1>Welcome!</h1><p>Thanks for signing up.</p>" }] }) ``` #### 2. Template Messages ```python result = mailjet.send.create(data={ "Messages": [{ "From": {"Email": "noreply@example.com"}, "To": [{"Email": "user@example.com"}], "TemplateID": 12345, "TemplateLanguage": True, "Variables": { "name": "John", "order_id": "ORD-12345" } }] }) ``` #### 3. Contact Management ```python # Add contact to list result = mailjet.contactslist_managecontact.create(id=list_id, data={ "Email": "user@example.com", "Properties": {"name": "John", "plan": "premium"}, "Action": "addnoforce" }) ``` ### Configuration ```json { "mcpServers": { "mailjet": { "command": "npx", "args": ["-y", "@anthropic/mcp-mailjet"], "env": { "MAILJET_API_KEY": "your-api-key", "MAILJET_API_SECRET": "your-secret" } } } } ``` ### Use Cases **Transactional Email**: Order confirmations, receipts. **Marketing Campaigns**: Newsletters and promotions. **Team Collaboration**: Collaborative template design. The Mailjet MCP Server brings collaborative email to Antigravity.
{
"mcpServers": {
"mailjet": {}
}
}