mailchimp
Complete guide to all Mailchimp tools — campaigns, audiences, lists, templates, segments, and email marketing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Complete guide to all Mailchimp tools — campaigns, audiences, lists, templates, segments, and email marketing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Complete guide to all Gmail tools — inbox management, search, sending, drafts, and attachments.
Understand the @matimo/composio governance wrapper — how composio_* tools proxy Composio's 250+ integrations, what risk levels mean for approval, and how to handle missing connected accounts.
Complete guide to all Microsoft Graph tools — search, OneDrive/SharePoint files, Outlook mail, Teams, calendar, and SharePoint publishing.
Generates a smart daily briefing by analyzing Gmail and Google Calendar.
Complete guide for DBA agents managing PostgreSQL databases — query execution, performance tuning, connection monitoring, index health, and VACUUM management. USE THIS SKILL whenever the user asks to inspect, diagnose, optimize, or manage a PostgreSQL database. Triggers include: 'show me slow queries', 'check table bloat', 'what connections are active', 'find unused indexes', 'why is my DB slow', 'run this SQL', or any Postgres health/diagnostic task.
Best practices for extracting signal from Slack channel history — decisions, action items, blockers, and FYIs — and formatting them into structured reports.
| name | mailchimp |
| description | Complete guide to all Mailchimp tools — campaigns, audiences, lists, templates, segments, and email marketing. |
| version | 1.0.0 |
| license | MIT |
| metadata | {"category":"Marketing","difficulty":"intermediate","apply-to":"mailchimp-create-campaign mailchimp-send-campaign mailchimp-get-campaign mailchimp-list-campaigns mailchimp-add-member mailchimp-list-members mailchimp-get-member","author":"Matimo","tags":"mailchimp,email,campaigns,marketing,audiences"} |
Complete guide to using Matimo's Mailchimp tools for campaign management, audience operations, and email marketing.
| Tool | Purpose | Category |
|---|---|---|
mailchimp-create-campaign | Create a new campaign | Campaigns |
mailchimp-send-campaign | Send or schedule a campaign | Campaigns |
mailchimp-get-campaign | Get campaign details and stats | Campaigns |
mailchimp-list-campaigns | List campaigns with filters | Campaigns |
mailchimp-add-member | Add a subscriber to an audience | Audiences |
mailchimp-list-members | List subscribers in an audience | Audiences |
mailchimp-get-member | Get subscriber details | Audiences |
Requires MAILCHIMP_API_KEY (format: key-dc, where dc is the data center, e.g., abc123-us21).
Use mailchimp-create-campaign with:
type — regular, plaintext, absplit, or rssrecipients — { "list_id": "..." } (required audience)settings — subject_line, from_name, reply_to, title{
"type": "regular",
"recipients": { "list_id": "abc123" },
"settings": {
"subject_line": "Weekly Newsletter",
"from_name": "Acme Team",
"reply_to": "team@acme.com"
}
}
Use mailchimp-send-campaign with campaign_id. Ensure campaign has content and recipients before sending.
Pre-send checklist:
Use mailchimp-get-campaign to retrieve delivery stats: emails_sent, opens, clicks, bounces, unsubscribes.
Use mailchimp-add-member with:
list_id (required) — the audience IDemail_address (required) — subscriber emailstatus — subscribed, unsubscribed, cleaned, pendingmerge_fields — { "FNAME": "Alice", "LNAME": "Smith" }Best practices:
pending status for double opt-in complianceUse mailchimp-list-members with list_id and optional status, count, offset for pagination.
Use mailchimp-get-member with list_id and subscriber_hash (MD5 of lowercase email) or email_address.
mailchimp-add-member with status: "pending"mailchimp-create-campaignmailchimp-send-campaignmailchimp-get-campaign for statsmailchimp-list-members with different statuses| Error | Cause | Fix |
|---|---|---|
401 API Key Invalid | Wrong API key or data center | Check key format key-dc |
400 Member Exists | Email already in audience | Use update instead of add |
400 Campaign Not Ready | Missing content or recipients | Complete all required fields |
429 Too Many Requests | Rate limit (10 concurrent connections) | Implement backoff |
404 Resource Not Found | Invalid list_id or campaign_id | Verify IDs |