Automate SendGrid Marketing Campaigns and Contact Management
Skill for SendGrid email automation via Composio's Rube MCP: Single Send campaigns, contacts/lists, senders, and analytics.
Maintainer of this project? Claim this page to edit the listing.
14.2.0Add to Favorites
Why it matters
Streamline your email marketing by automating SendGrid campaigns, contact list management, and sender identity setup. This asset enables efficient creation and sending of marketing emails, ensuring compliance and effective audience engagement.
Outcomes
What it gets done
Create and send marketing email campaigns to targeted lists.
Manage contacts, including adding, updating, and removing them from lists.
Set up and verify sender identities for email campaigns.
Monitor email statistics and activity for performance insights.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/ag-sendgrid-automation | bash Overview
SendGrid Automation via Rube MCP
A skill for automating SendGrid email delivery - Single Send campaigns, contact/list management, sender identities, and analytics - via Composio's Rube MCP. Use for SendGrid campaign creation, contact/list management, sender verification, or analytics via an MCP-connected agent with an active connection.
What it does
SendGrid Automation via Rube MCP automates SendGrid email delivery - marketing campaigns (Single Sends), contact and list management, sender identity setup, and email analytics - through Composio's SendGrid toolkit. It requires Rube MCP connected (https://rube.app/mcp, no API keys needed) with an active SendGrid connection via RUBE_MANAGE_CONNECTIONS, and RUBE_SEARCH_TOOLS must be called first for current tool schemas.
When to use - and when NOT to
Use it across five workflows: creating and sending marketing campaigns (SENDGRID_CREATE_SINGLE_SEND, requiring either a suppression_group_id or custom_unsubscribe_url for compliance, and a verified sender checked via SENDGRID_GET_ALL_SENDER_IDENTITIES), managing contacts and lists (SENDGRID_ADD_OR_UPDATE_A_CONTACT, SENDGRID_IMPORT_CONTACTS for bulk CSV, SENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTS which is irreversible and needs explicit confirmation, and list names which must be unique - duplicates return a 400 error), managing sender identities (SENDGRID_CREATE_A_SENDER_IDENTITY requiring a physical address for CAN-SPAM compliance, up to 100 sender identities per account, avoiding strict-DMARC domains like gmail.com as from-addresses), viewing email statistics/activity (SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS, returned nested under details[].stats[0].metrics rather than flat; SENDGRID_FILTER_ALL_MESSAGES which requires a paid 30-day activity history add-on; category-level stats limited to the previous 13 months and max 10 categories per request), and managing suppression groups for unsubscribe compliance.
Inputs and outputs
All nested parameters use double-underscore notation (e.g. email__config__subject, from__email). A key gotcha: setting send_at on SENDGRID_CREATE_SINGLE_SEND only prepopulates a UI date field and does not schedule the send - actual scheduling requires the separate Schedule endpoint. Contact operations (ADD_OR_UPDATE_A_CONTACT, IMPORT_CONTACTS) are asynchronous, returning HTTP 202 with a job_id, and contacts may take 10-30 seconds to appear - always verify with a follow-up lookup rather than assuming immediate consistency. Bulk contact upserts are capped at 30,000 contacts or 6MB per request.
Integrations
ID resolution is a recurring pattern: list name to list_id via SENDGRID_RETRIEVE_ALL_LISTS, sender name to sender_id via SENDGRID_GET_ALL_SENDER_IDENTITIES, contact email to contact_id via SENDGRID_GET_CONTACTS_BY_EMAILS. Pagination style also varies by endpoint: SENDGRID_RETRIEVE_ALL_LISTS uses token-based paging (page_token, page_size up to 1000), while SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS uses offset-based paging (limit up to 500, offset). The legacy SENDGRID_ADD_A_SINGLE_RECIPIENT_TO_A_LIST tool takes a Base64-encoded lowercase-email recipient_id rather than a plain identifier. ID formats vary by resource: marketing list and contact IDs are UUIDs, legacy list IDs are integers and must not be mixed with Marketing API endpoints, sender identity IDs are integers, and dynamic template IDs start with "d-" while legacy templates are UUIDs. Some tools use the legacy Contact Database API (/v3/contactdb/), which can return 403 on newer accounts - Marketing API tools (SENDGRID_ADD_OR_UPDATE_A_CONTACT, SENDGRID_RETRIEVE_ALL_LISTS, SENDGRID_CREATE_SINGLE_SEND) are preferred. Rate limits return HTTP 429 with a Retry-After header, and CSV activity exports are limited to one request per 12 hours with a 3-day link expiry.
Who it's for
Marketing operations teams automating SendGrid campaigns, contact/list management, sender verification, and delivery analytics through an MCP-connected agent, with the async-timing, ID-format, and legacy-vs-Marketing-API gotchas already documented to avoid silent failures. Suppression groups also matter for read accuracy: suppressed addresses stay undeliverable even when present on a marketing list, so a campaign's actual send count can legitimately be lower than the target list's contact count.
Source README
SendGrid 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.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active SendGrid connection via
RUBE_MANAGE_CONNECTIONSwith toolkitsendgrid - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
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
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitsendgrid - 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:
SENDGRID_RETRIEVE_ALL_LISTS- List available marketing lists to target [Prerequisite]SENDGRID_CREATE_A_LIST- Create a new list if needed [Optional]SENDGRID_ADD_OR_UPDATE_A_CONTACT- Add contacts to the list [Optional]SENDGRID_GET_ALL_SENDER_IDENTITIES- Get verified sender ID [Prerequisite]SENDGRID_CREATE_SINGLE_SEND- Create the campaign with content, sender, and recipients [Required]
Key parameters for SENDGRID_CREATE_SINGLE_SEND:
name: Campaign name (required)email__config__subject: Email subject lineemail__config__html__content: HTML body contentemail__config__plain__content: Plain text versionemail__config__sender__id: Verified sender identity IDemail__config__design__id: Use instead of html_content for pre-built designssend__to__list__ids: Array of list UUIDs to send tosend__to__segment__ids: Array of segment UUIDssend__to__all: true to send to all contactsemail__config__suppression__group__idoremail__config__custom__unsubscribe__url: One required for compliance
Pitfalls:
- Setting
send_aton CREATE does NOT schedule the send; it only prepopulates the UI date; use the Schedule endpoint separately send_at: "now"is only valid with the Schedule endpoint, not CREATE- Must provide either
suppression_group_idorcustom_unsubscribe_urlfor unsubscribe compliance - 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:
SENDGRID_RETRIEVE_ALL_LISTS- List all marketing lists [Required]SENDGRID_CREATE_A_LIST- Create a new contact list [Optional]SENDGRID_GET_A_LIST_BY_ID- Get list details and sample contacts [Optional]SENDGRID_ADD_OR_UPDATE_A_CONTACT- Upsert contacts with list association [Required]SENDGRID_GET_CONTACTS_BY_EMAILS- Look up contacts by email [Optional]SENDGRID_GET_CONTACTS_BY_IDENTIFIERS- Look up contacts by email, phone, or external ID [Optional]SENDGRID_GET_LIST_CONTACT_COUNT- Verify contact count after operations [Optional]SENDGRID_REMOVE_CONTACTS_FROM_A_LIST- Remove contacts from a list without deleting [Optional]SENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTS- Delete an entire list [Optional]SENDGRID_IMPORT_CONTACTS- Bulk import from CSV [Optional]
Key parameters for SENDGRID_ADD_OR_UPDATE_A_CONTACT:
contacts: Array of contact objects (max 30,000 or 6MB), each with at least one identifier:email,phone_number_id,external_id, oranonymous_id(required)list_ids: Array of list UUID strings to associate contacts with
Pitfalls:
SENDGRID_ADD_OR_UPDATE_A_CONTACTis asynchronous; returns 202 withjob_id; contacts may take 10-30 seconds to appear- List IDs are UUIDs (e.g., "ca7a3796-e8a8-4029-9ccb-df8937940562"), not integers
- List names must be unique; duplicate names cause 400 errors
SENDGRID_ADD_A_SINGLE_RECIPIENT_TO_A_LISTuses the legacy API; preferSENDGRID_ADD_OR_UPDATE_A_CONTACTwithlist_idsSENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTSis irreversible; require explicit user confirmation- 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:
SENDGRID_GET_ALL_SENDER_IDENTITIES- List all existing sender identities [Required]SENDGRID_CREATE_A_SENDER_IDENTITY- Create a new sender identity [Optional]SENDGRID_VIEW_A_SENDER_IDENTITY- View details for a specific sender [Optional]SENDGRID_UPDATE_A_SENDER_IDENTITY- Update sender details [Optional]SENDGRID_CREATE_VERIFIED_SENDER_REQUEST- Create and verify a new sender [Optional]SENDGRID_AUTHENTICATE_A_DOMAIN- Set up domain authentication for auto-verification [Optional]
Key parameters for SENDGRID_CREATE_A_SENDER_IDENTITY:
from__email: From email address (required)from__name: Display name (required)reply__to__email: Reply-to address (required)nickname: Internal identifier (required)address,city,country: Physical address for CAN-SPAM compliance (required)
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
SENDGRID_CREATE_VERIFIED_SENDER_REQUESTsends a verification email; sender is unusable until verified
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:
SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS- Get account-wide delivery metrics [Required]SENDGRID_GET_ALL_CATEGORIES- Discover available categories for filtering [Optional]SENDGRID_RETRIEVE_EMAIL_STATISTICS_FOR_CATEGORIES- Get stats broken down by category [Optional]SENDGRID_FILTER_ALL_MESSAGES- Search email activity feed by recipient, status, or date [Optional]SENDGRID_FILTER_MESSAGES_BY_MESSAGE_ID- Get detailed events for a specific message [Optional]SENDGRID_REQUEST_CSV- Export activity data as CSV for large datasets [Optional]SENDGRID_DOWNLOAD_CSV- Download the exported CSV file [Optional]
Key parameters for SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS:
start_date: Start date YYYY-MM-DD (required)end_date: End date YYYY-MM-DDaggregated_by: "day", "week", or "month"limit/offset: Pagination (default 500)
Key parameters for SENDGRID_FILTER_ALL_MESSAGES:
query: SQL-like query string, e.g.,status="delivered",to_email="user@example.com", date ranges withBETWEEN TIMESTAMPlimit: 1-1000 (default 10)
Pitfalls:
SENDGRID_FILTER_ALL_MESSAGESrequires the "30 Days Additional Email Activity History" paid add-on; returns 403 without it- Global statistics are nested under
details[].stats[0].metrics, not a flat structure - 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:
SENDGRID_GET_SUPPRESSION_GROUPS- List all suppression groups [Required]SENDGRID_RETRIEVE_ALL_SUPPRESSION_GROUPS_FOR_AN_EMAIL_ADDRESS- Check suppression status for a specific email [Optional]
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:
SENDGRID_RETRIEVE_ALL_LISTSand match by name - Sender name -> sender_id:
SENDGRID_GET_ALL_SENDER_IDENTITIESand match - Contact email -> contact_id:
SENDGRID_GET_CONTACTS_BY_EMAILSwith email array - Template name -> template_id: Use the SendGrid UI or template endpoints
Pagination
SENDGRID_RETRIEVE_ALL_LISTS: Token-based withpage_tokenandpage_size(max 1000)SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS: Offset-based withlimit(max 500) andoffset- 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
GET_LIST_CONTACT_COUNTto confirm list growth
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
Retry-Afterheaders - 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__subject,from__email send_aton CREATE_SINGLE_SEND only sets a UI default, does NOT scheduleSENDGRID_ADD_A_SINGLE_RECIPIENT_TO_A_LISTuses legacy API;recipient_idis Base64-encoded lowercase emailSENDGRID_RETRIEVE_ALL_LISTSandSENDGRID_GET_ALL_LISTSboth exist; prefer RETRIEVE_ALL_LISTS for Marketing API- Contact adds are async (202); always verify after a delay
Legacy vs Marketing API
- Some tools use the legacy Contact Database API (
/v3/contactdb/) which may return 403 on newer accounts - Prefer Marketing API tools:
SENDGRID_ADD_OR_UPDATE_A_CONTACT,SENDGRID_RETRIEVE_ALL_LISTS,SENDGRID_CREATE_SINGLE_SEND
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List marketing lists | SENDGRID_RETRIEVE_ALL_LISTS |
page_size, page_token |
| Create list | SENDGRID_CREATE_A_LIST |
name |
| Get list by ID | SENDGRID_GET_A_LIST_BY_ID |
id |
| Get list count | SENDGRID_GET_LIST_CONTACT_COUNT |
id |
| Add/update contacts | SENDGRID_ADD_OR_UPDATE_A_CONTACT |
contacts, list_ids |
| Search contacts by email | SENDGRID_GET_CONTACTS_BY_EMAILS |
emails |
| Search by identifiers | SENDGRID_GET_CONTACTS_BY_IDENTIFIERS |
identifier_type, identifiers |
| Remove from list | SENDGRID_REMOVE_CONTACTS_FROM_A_LIST |
id, contact_ids |
| Delete list | SENDGRID_REMOVE_LIST_AND_OPTIONAL_CONTACTS |
id, delete_contacts |
| Import contacts CSV | SENDGRID_IMPORT_CONTACTS |
field mappings |
| Create Single Send | SENDGRID_CREATE_SINGLE_SEND |
name, email__config__*, send__to__list__ids |
| List sender identities | SENDGRID_GET_ALL_SENDER_IDENTITIES |
(none) |
| Create sender | SENDGRID_CREATE_A_SENDER_IDENTITY |
from__email, from__name, address |
| Verify sender | SENDGRID_CREATE_VERIFIED_SENDER_REQUEST |
from_email, nickname, address |
| Authenticate domain | SENDGRID_AUTHENTICATE_A_DOMAIN |
domain |
| Global email stats | SENDGRID_RETRIEVE_GLOBAL_EMAIL_STATISTICS |
start_date, aggregated_by |
| Category stats | SENDGRID_RETRIEVE_EMAIL_STATISTICS_FOR_CATEGORIES |
start_date, categories |
| Filter email activity | SENDGRID_FILTER_ALL_MESSAGES |
query, limit |
| Message details | SENDGRID_FILTER_MESSAGES_BY_MESSAGE_ID |
msg_id |
| Export CSV | SENDGRID_REQUEST_CSV |
query |
| Download CSV | SENDGRID_DOWNLOAD_CSV |
download_uuid |
| List categories | SENDGRID_GET_ALL_CATEGORIES |
(none) |
| Suppression groups | SENDGRID_GET_SUPPRESSION_GROUPS |
(none) |
| Get template | SENDGRID_RETRIEVE_A_SINGLE_TRANSACTIONAL_TEMPLATE |
template_id |
| Duplicate template | SENDGRID_DUPLICATE_A_TRANSACTIONAL_TEMPLATE |
template_id, name |
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.