Transactional email delivery with high deliverability.
## Postmark MCP Server: Transactional Email The **Postmark MCP Server** integrates Postmark's transactional email service into Google Antigravity. This platform specializes in delivering transactional emails with industry-leading speed and deliverability. ### Why Postmark MCP? Postmark focuses on transactional excellence: - **Fastest Delivery**: Average 10 seconds to inbox - **99% Deliverability**: Industry-leading inbox rates - **Templates**: Beautiful, tested templates - **Analytics**: Detailed delivery insights - **Dedicated IPs**: Premium deliverability ### Key Features #### 1. Send Email ```python from postmarker.core import PostmarkClient client = PostmarkClient(server_token="your-token") # Send email response = client.emails.send( From="noreply@example.com", To="user@example.com", Subject="Your order has shipped!", HtmlBody="<h1>Order Shipped</h1><p>Track your package...</p>" ) print(f"Message ID: {response['MessageID']}") ``` #### 2. Templates ```python # Send with template response = client.emails.send_with_template( TemplateId=12345, TemplateModel={ "name": "John", "order_id": "ORD-12345", "items": [ {"name": "Widget", "qty": 2, "price": "$50"} ] }, From="noreply@example.com", To="user@example.com" ) ``` #### 3. Batch Sending ```python # Send multiple emails efficiently emails = [ { "From": "noreply@example.com", "To": user.email, "TemplateId": 12345, "TemplateModel": {"name": user.name} } for user in users ] responses = client.emails.send_batch_with_templates(*emails) ``` ### Configuration ```json { "mcpServers": { "postmark": { "command": "npx", "args": ["-y", "@anthropic/mcp-postmark"], "env": { "POSTMARK_SERVER_TOKEN": "your-server-token" } } } } ``` ### Use Cases **Password Resets**: Critical security emails delivered fast. **Order Confirmations**: Transactional receipts and updates. **Notifications**: Important user notifications. The Postmark MCP Server brings reliable transactional email to Antigravity.
{
"mcpServers": {
"postmark": {}
}
}