Send transactional email, manage templates, sync contacts, and view stats via SendGrid API
70+ deploysclaude mcp add sendgrid --url https://datafaucet.dev/api/mcp/t/sendgrid
Run this command in your terminal · most users connect in under 60s
POST endpoints
send_email
Send transactional email. Supports personalizations array (per-recipient substitutions), HTML or plain text content, CC/BCC, reply-to, attachments (base64), and custom headers.
https://api.sendgrid.com/v3/mail/send
GET endpoints
list_templates
List dynamic email templates with ID, name, generation (legacy/dynamic), and active version details including subject line and editor type.
https://api.sendgrid.com/v3/templates
list_contacts
Fetch marketing contacts with email, first/last name, list memberships, custom fields, and created/updated timestamps. Returns contact_count for billing awareness.
https://api.sendgrid.com/v3/marketing/contacts
get_stats
Retrieve global email metrics by date: requests, delivered, opens, unique_opens, clicks, bounces, spam_reports, and unsubscribes. Filter with start_date and end_date params.
https://api.sendgrid.com/v3/stats
list_bounces
List hard and soft bounced addresses with reason (e.g. '550 User unknown'), SMTP status code, created timestamp, and whether it was a transient or permanent failure.
https://api.sendgrid.com/v3/suppression/bounces
get_email_template
Get a specific email template by ID. Returns template name, versions with subject lines, HTML/plain content, and active version details.
https://api.sendgrid.com/v3/templates/{template_id}
Run this in your terminal:
claude mcp add sendgrid https://datafaucet.dev/api/mcp/t/sendgrid
Connect SendGrid to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{email_body}Email address{from_email}Email address{sendgrid_api_key}API settings page{subject}Your value{template_id}Resource identifier{to_email}Email addressPreview:
POST https://api.sendgrid.com/v3/mail/send Authorization: Bearer {sendgrid_api_key} Content-Type: application/json {"personalizations":[{"to":[{"email":"{to_email}"}]}],"from":{"email":"{from_email}"},"subject":"{subject}","content":[{"type":"text/plain","value":"{email_body}"}]}
claude mcp add sendgrid --url https://datafaucet.dev/api/mcp/t/sendgridWhat your AI agent sees
I have access to 6 tools from SendGrid: send_email, list_templates, list_contacts, and 3 more.
“Send transactional email. Supports personalizations array (per-recipient substitutions), HTML or plain text content, CC/BCC, reply-to, attachments (base64), and custom headers.”
Calling send_email... Done. Here are the results.
Try these prompts
“Send a transactional email to alex@example.com with subject 'Order Shipped'”
Copy“List all email templates and show which ones have the highest open rates”
Copy“Check the bounce rate for emails sent in the last 7 days”
CopyClick any prompt to copy, then paste into your AI client.