2.0k★by mrgoodb
mailchimp – OpenClaw Skill
mailchimp is an OpenClaw Skills integration for data analytics workflows. Manage email marketing campaigns, audiences, and automations via Mailchimp API.
2.0k stars5.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics
Skill Snapshot
| name | mailchimp |
| description | Manage email marketing campaigns, audiences, and automations via Mailchimp API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/mailchimp |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/mailchimp |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
271 BSKILL.md
1.4 KBSKILL.md
name: mailchimp description: Manage email marketing campaigns, audiences, and automations via Mailchimp API. metadata: {"clawdbot":{"emoji":"🐵","requires":{"env":["MAILCHIMP_API_KEY","MAILCHIMP_SERVER"]}}}
Mailchimp
Email marketing automation.
Environment
export MAILCHIMP_API_KEY="xxxxxxxxxx-us1"
export MAILCHIMP_SERVER="us1" # From API key suffix
List Audiences
curl "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/lists" \
-u "anystring:$MAILCHIMP_API_KEY"
Add Subscriber
curl -X POST "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/lists/{list_id}/members" \
-u "anystring:$MAILCHIMP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email_address": "user@example.com",
"status": "subscribed",
"merge_fields": {"FNAME": "John", "LNAME": "Doe"}
}'
List Campaigns
curl "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/campaigns" \
-u "anystring:$MAILCHIMP_API_KEY"
Get Campaign Stats
curl "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/reports/{campaign_id}" \
-u "anystring:$MAILCHIMP_API_KEY"
Send Campaign
curl -X POST "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/campaigns/{campaign_id}/actions/send" \
-u "anystring:$MAILCHIMP_API_KEY"
Links
- Dashboard: https://mailchimp.com
- Docs: https://mailchimp.com/developer/
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install mailchimp?
Run openclaw add @mrgoodb/mailchimp in your terminal. This installs mailchimp into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/mailchimp. Review commits and README documentation before installing.
