Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
SendGrid
mail

SendGrid MCP Server

MCP server for SendGrid email marketing

sendgridemailmarketingtwilio

About

## SendGrid MCP Server: Email Delivery Platform The **SendGrid MCP Server** integrates SendGrid's email delivery platform into Google Antigravity. This enables reliable transactional and marketing email delivery with templates, analytics, and high deliverability. ### Why SendGrid MCP? SendGrid leads email delivery: - **High Deliverability**: 99%+ inbox rates - **Templates**: Dynamic email templates - **Analytics**: Detailed engagement metrics - **Scalability**: Billions of emails monthly - **APIs**: RESTful and SMTP access ### Key Features #### 1. Send Email ```python from sendgrid import SendGridAPIClient from sendgrid.helpers.mail import Mail sg = SendGridAPIClient(api_key="your-key") message = Mail( from_email="noreply@example.com", to_emails="user@example.com", subject="Welcome to Our Platform!", html_content="<h1>Welcome!</h1><p>Thanks for signing up.</p>" ) response = sg.send(message) print(f"Status: {response.status_code}") ``` #### 2. Dynamic Templates ```python message = Mail( from_email="noreply@example.com", to_emails="user@example.com" ) message.template_id = "d-template123" message.dynamic_template_data = { "name": "John", "order_id": "12345", "items": [ {"name": "Widget", "price": "$99"}, {"name": "Gadget", "price": "$149"} ] } response = sg.send(message) ``` #### 3. Bulk Sending ```python from sendgrid.helpers.mail import Personalization message = Mail(from_email="noreply@example.com") message.template_id = "d-newsletter123" for user in users: personalization = Personalization() personalization.add_to(user.email) personalization.dynamic_template_data = {"name": user.name} message.add_personalization(personalization) response = sg.send(message) ``` ### Configuration ```json { "mcpServers": { "sendgrid": { "command": "npx", "args": ["-y", "@anthropic/mcp-sendgrid"], "env": { "SENDGRID_API_KEY": "SG.xxxxx", "SENDGRID_FROM_EMAIL": "noreply@example.com" } } } } ``` ### Use Cases **Transactional Email**: Password resets, order confirmations. **Marketing Campaigns**: Newsletters and promotions. **User Notifications**: Activity alerts and updates. The SendGrid MCP Server brings reliable email to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "sendgrid": {
      "mcpServers": {
        "sendgrid": {
          "env": {
            "SENDGRID_API_KEY": "YOUR_SENDGRID_API_KEY"
          },
          "args": [
            "-y",
            "sendgrid-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get API key from SendGrid dashboard
  2. 22. Manage contacts and email lists
  3. 33. Create and send email campaigns

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers