Buildwithclaude sendgrid-automation
Automate SendGrid email operations including sending emails, managing contacts/lists, sender identities, templates, and analytics via Rube MCP (Composio). Always search tools first for current schemas.
git clone https://github.com/davepoon/buildwithclaude
T=$(mktemp -d) && git clone --depth=1 https://github.com/davepoon/buildwithclaude "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/all-skills/skills/sendgrid-automation" ~/.claude/skills/davepoon-buildwithclaude-sendgrid-automation && rm -rf "$T"
plugins/all-skills/skills/sendgrid-automation/SKILL.mdSendGrid Automation via Rube MCP
Automate SendGrid email delivery workflows including marketing campaigns (Single Sends), contact and list management, sender identity setup, and email analytics through Composio's SendGrid toolkit.
Toolkit docs: composio.dev/toolkits/sendgrid
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active SendGrid connection via
with toolkitRUBE_MANAGE_CONNECTIONSsendgrid - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS
Setup
Get Rube MCP: Add
https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONSsendgrid - If connection is not ACTIVE, follow the returned auth link to complete SendGrid API key authentication
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create and Send Marketing Campaigns (Single Sends)
When to use: User wants to create and send a marketing email campaign to a contact list or segment.
Tool sequence:
- List available marketing lists to target [Prerequisite]SENDGRID_RETRIEVE_ALL_LISTS
- Create a new list if needed [Optional]SENDGRID_CREATE_A_LIST
- Add contacts to the list [Optional]SENDGRID_ADD_OR_UPDATE_A_CONTACT
- Get verified sender ID [Prerequisite]SENDGRID_GET_ALL_SENDER_IDENTITIES
- Create the campaign with content, sender, and recipients [Required]SENDGRID_CREATE_SINGLE_SEND
Key parameters for SENDGRID_CREATE_SINGLE_SEND:
: Campaign name (required)name
: Email subject lineemail__config__subject
: HTML body contentemail__config__html__content
: Plain text versionemail__config__plain__content
: Verified sender identity IDemail__config__sender__id
: Use instead of html_content for pre-built designsemail__config__design__id
: Array of list UUIDs to send tosend__to__list__ids
: Array of segment UUIDssend__to__segment__ids
: true to send to all contactssend__to__all
oremail__config__suppression__group__id
: One required for complianceemail__config__custom__unsubscribe__url
Pitfalls:
- Setting
on CREATE does NOT schedule the send; it only prepopulates the UI date; use the Schedule endpoint separatelysend_at
is only valid with the Schedule endpoint, not CREATEsend_at: "now"- Must provide either
orsuppression_group_id
for unsubscribe compliancecustom_unsubscribe_url - Sender must be verified before use; check with
SENDGRID_GET_ALL_SENDER_IDENTITIES - Nested params use double-underscore notation (e.g.,
)email__config__subject
2. Manage Contacts and Lists
When to use: User wants to create contact lists, add/update contacts, search for contacts, or remove contacts from lists.
Tool sequence:
- List all marketing lists [Required]SENDGRID_RETRIEVE_ALL_LISTS
- Create a new contact list [Optional]SENDGRID_CREATE_A_LIST
- Get list details and sample contacts [Optional]SENDGRID_GET_A_LIST_BY_ID
- Upsert contacts with list association [Required]SENDGRID_ADD_OR_UPDATE_A_CONTACT
- Look up contacts by email [Optional]SENDGRID_GET_CONTACTS_BY_EMAILS
- Look up contacts by email, phone, or external ID [Optional]SENDGRID_GET_CONTACTS_BY_IDENTIFIERS
- Verify contact count after operations [Optional]SENDGRID_GET_LIST_CONTACT_COUNT
- Remove contacts from a list without deleting [Optional]SENDGRID_REMOVE_CONTACTS_FROM_A_LIST
- Delete an entire list [Optional]SENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTS
- Bulk import from CSV [Optional]SENDGRID_IMPORT_CONTACTS
Key parameters for SENDGRID_ADD_OR_UPDATE_A_CONTACT:
: Array of contact objects (max 30,000 or 6MB), each with at least one identifier:contacts
,email
,phone_number_id
, orexternal_id
(required)anonymous_id
: Array of list UUID strings to associate contacts withlist_ids
Pitfalls:
is asynchronous; returns 202 withSENDGRID_ADD_OR_UPDATE_A_CONTACT
; contacts may take 10-30 seconds to appearjob_id- List IDs are UUIDs (e.g., "ca7a3796-e8a8-4029-9ccb-df8937940562"), not integers
- List names must be unique; duplicate names cause 400 errors
uses the legacy API; preferSENDGRID_ADD_A_SINGLE_RECIPIENT_TO_A_LIST
withSENDGRID_ADD_OR_UPDATE_A_CONTACTlist_ids
is irreversible; require explicit user confirmationSENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTS- Email addresses are automatically lowercased by SendGrid
3. Manage Sender Identities
When to use: User wants to set up or view sender identities (From addresses) for sending emails.
Tool sequence:
- List all existing sender identities [Required]SENDGRID_GET_ALL_SENDER_IDENTITIES
- Create a new sender identity [Optional]SENDGRID_CREATE_A_SENDER_IDENTITY
- View details for a specific sender [Optional]SENDGRID_VIEW_A_SENDER_IDENTITY
- Update sender details [Optional]SENDGRID_UPDATE_A_SENDER_IDENTITY
- Create and verify a new sender [Optional]SENDGRID_CREATE_VERIFIED_SENDER_REQUEST
- Set up domain authentication for auto-verification [Optional]SENDGRID_AUTHENTICATE_A_DOMAIN
Key parameters for SENDGRID_CREATE_A_SENDER_IDENTITY:
: From email address (required)from__email
: Display name (required)from__name
: Reply-to address (required)reply__to__email
: Internal identifier (required)nickname
,address
,city
: Physical address for CAN-SPAM compliance (required)country
Pitfalls:
- New senders must be verified before use; if domain is not authenticated, a verification email is sent
- Up to 100 unique sender identities per account
- Avoid using domains with strict DMARC policies (gmail.com, yahoo.com) as from addresses
sends a verification email; sender is unusable until verifiedSENDGRID_CREATE_VERIFIED_SENDER_REQUEST
4. View Email Statistics and Activity
When to use: User wants to review email delivery stats, bounce rates, open/click metrics, or message activity.
Tool sequence:
- Get account-wide delivery metrics [Required]SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS
- Discover available categories for filtering [Optional]SENDGRID_GET_ALL_CATEGORIES
- Get stats broken down by category [Optional]SENDGRID_RETRIEVE_EMAIL_STATISTICS_FOR_CATEGORIES
- Search email activity feed by recipient, status, or date [Optional]SENDGRID_FILTER_ALL_MESSAGES
- Get detailed events for a specific message [Optional]SENDGRID_FILTER_MESSAGES_BY_MESSAGE_ID
- Export activity data as CSV for large datasets [Optional]SENDGRID_REQUEST_CSV
- Download the exported CSV file [Optional]SENDGRID_DOWNLOAD_CSV
Key parameters for SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS:
: Start date YYYY-MM-DD (required)start_date
: End date YYYY-MM-DDend_date
: "day", "week", or "month"aggregated_by
/limit
: Pagination (default 500)offset
Key parameters for SENDGRID_FILTER_ALL_MESSAGES:
: SQL-like query string, e.g.,query
,status="delivered"
, date ranges withto_email="user@example.com"BETWEEN TIMESTAMP
: 1-1000 (default 10)limit
Pitfalls:
requires the "30 Days Additional Email Activity History" paid add-on; returns 403 without itSENDGRID_FILTER_ALL_MESSAGES- Global statistics are nested under
, not a flat structuredetails[].stats[0].metrics - Category statistics are only available for the previous 13 months
- Maximum 10 categories per request in
SENDGRID_RETRIEVE_EMAIL_STATISTICS_FOR_CATEGORIES - CSV export is limited to one request per 12 hours; link expires after 3 days
5. Manage Suppressions
When to use: User wants to check or manage unsubscribe groups for email compliance.
Tool sequence:
- List all suppression groups [Required]SENDGRID_GET_SUPPRESSION_GROUPS
- Check suppression status for a specific email [Optional]SENDGRID_RETRIEVE_ALL_SUPPRESSION_GROUPS_FOR_AN_EMAIL_ADDRESS
Pitfalls:
- Suppressed addresses remain undeliverable even if present on marketing lists
- Campaign send counts may be lower than list counts due to suppressions
Common Patterns
ID Resolution
Always resolve names to IDs before operations:
- List name -> list_id:
and match by nameSENDGRID_RETRIEVE_ALL_LISTS - Sender name -> sender_id:
and matchSENDGRID_GET_ALL_SENDER_IDENTITIES - Contact email -> contact_id:
with email arraySENDGRID_GET_CONTACTS_BY_EMAILS - Template name -> template_id: Use the SendGrid UI or template endpoints
Pagination
: Token-based withSENDGRID_RETRIEVE_ALL_LISTS
andpage_token
(max 1000)page_size
: Offset-based withSENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS
(max 500) andlimitoffset- Always paginate list retrieval to avoid missing existing lists
Async Operations
Contact operations (
ADD_OR_UPDATE_A_CONTACT, IMPORT_CONTACTS) are asynchronous:
- Returns 202 with a
job_id - Wait 10-30 seconds before verifying with
GET_CONTACTS_BY_EMAILS - Use
to confirm list growthGET_LIST_CONTACT_COUNT
Known Pitfalls
ID Formats
- Marketing list IDs are UUIDs (e.g., "ca7a3796-e8a8-4029-9ccb-df8937940562")
- Legacy list IDs are integers; do not mix with Marketing API endpoints
- Sender identity IDs are integers
- Template IDs: Dynamic templates start with "d-", legacy templates are UUIDs
- Contact IDs are UUIDs
Rate Limits
- SendGrid may return HTTP 429; respect
headersRetry-After - CSV export limited to one request per 12 hours
- Bulk contact upsert max: 30,000 contacts or 6MB per request
Parameter Quirks
- Nested params use double-underscore:
,email__config__subjectfrom__email
on CREATE_SINGLE_SEND only sets a UI default, does NOT schedulesend_at
uses legacy API;SENDGRID_ADD_A_SINGLE_RECIPIENT_TO_A_LIST
is Base64-encoded lowercase emailrecipient_id
andSENDGRID_RETRIEVE_ALL_LISTS
both exist; prefer RETRIEVE_ALL_LISTS for Marketing APISENDGRID_GET_ALL_LISTS- Contact adds are async (202); always verify after a delay
Legacy vs Marketing API
- Some tools use the legacy Contact Database API (
) which may return 403 on newer accounts/v3/contactdb/ - Prefer Marketing API tools:
,SENDGRID_ADD_OR_UPDATE_A_CONTACT
,SENDGRID_RETRIEVE_ALL_LISTSSENDGRID_CREATE_SINGLE_SEND
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List marketing lists | | , |
| Create list | | |
| Get list by ID | | |
| Get list count | | |
| Add/update contacts | | , |
| Search contacts by email | | |
| Search by identifiers | | , |
| Remove from list | | , |
| Delete list | | , |
| Import contacts CSV | | field mappings |
| Create Single Send | | , , |
| List sender identities | | (none) |
| Create sender | | , , |
| Verify sender | | , , |
| Authenticate domain | | |
| Global email stats | | , |
| Category stats | | , |
| Filter email activity | | , |
| Message details | | |
| Export CSV | | |
| Download CSV | | |
| List categories | | (none) |
| Suppression groups | | (none) |
| Get template | | |
| Duplicate template | | , |
Powered by Composio