skills$openclaw/mailchimp
mrgoodb2.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

namemailchimp
descriptionManage email marketing campaigns, audiences, and automations via Mailchimp API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/mailchimp
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/mailchimp
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains mailchimp in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
271 B
SKILL.md
1.4 KB
SKILL.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"
curl -X POST "https://$MAILCHIMP_SERVER.api.mailchimp.com/3.0/campaigns/{campaign_id}/actions/send" \
  -u "anystring:$MAILCHIMP_API_KEY"
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.