mailchimp-automation
Automate Mailchimp email marketing including campaigns, audiences, subscribers, segments, and analytics via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Office AutomationInstall
Hot:4
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=sickn33-skills-mailchimp-automation&locale=en&source=copy
Mailchimp Automation - Automate Email Marketing via Rube MCP
Skill Overview
Mailchimp automation skills implemented through Rube MCP (Composio) enable end-to-end workflows such as creating and sending email campaigns, managing audiences and subscribers, segmenting by groups, and generating data analytics reports.
Use Cases
Create, configure, test, and schedule email marketing campaigns. Supports HTML content setup, template usage, and preview testing before sending. Ideal for scenarios that require regular or bulk email sending.
View all audience lists and member details, filter subscribers by status, and add or update subscriber information in bulk. Supports MD5 subscriber hash identification, making it suitable for maintaining large mailing lists.
Retrieve detailed reports for sent campaigns, including key metrics such as open rate, click rate, and unsubscribe rate. Supports link-level click statistics and activity tracking for individual subscribers, making it ideal for marketers and operators who need in-depth analysis.
Core Features
Supports multiple email types (regular, plain text, RSS, variants). Allows setting the subject line, from-address details, and preview text. Supports HTML content or templates. Provides three sending methods: test email sending, immediate sending, and scheduled sending.
Offers subscriber list viewing (with pagination and status filtering), email/name search, detailed info retrieval, and upsert-style add/update (to avoid duplicates), as well as bulk group management.
Can list all campaigns and summary reports, and retrieve detailed metrics for individual campaigns. Supports tracking clicks for specific links, viewing the subscriber list for clicked links, and searching an individual subscriber’s email activity history.
FAQs
How to Connect a Mailchimp Account via Rube MCP?
https://rube.app/mcp as an MCP server (no API key required); RUBE_MANAGE_CONNECTIONS and specify the toolkit as mailchimp; Before using, call
RUBE_SEARCH_TOOLS first to get the latest tool specifications.What Preparation Is Needed Before Sending a Mailchimp Email Campaign?
Ensure the Mailchimp connection is activated. Use
MAILCHIMP_GET_LISTS_INFO to obtain the target audience’s list_id. When creating a campaign, provide the email type, audience ID, subject line, sender name, and reply-to email. Use MAILCHIMP_SET_CAMPAIGN_CONTENT to set the email content (HTML or template). It’s recommended to send a test email (MAILCHIMP_SEND_TEST_EMAIL) for review before sending it for real. Sending actions are irreversible—please make sure everything is correct.What Is subscriber_hash? How Is It Generated?
subscriber_hash is the lowercase MD5 hash (32-character hexadecimal string) of a subscriber’s email address. Many Mailchimp API endpoints require it to precisely locate subscribers. Generation method:
import hashlib; subscriber_hash = hashlib.md5(email.lower().encode()).hexdigest() Note: You must use a lowercase email for hashing; otherwise, you may get a 404 error or duplicate records.