mailchimp
Mailchimp
Manage lists, campaigns, and subscribers via the Mailchimp Marketing API.
Environment Variables
MAILCHIMP_API_KEY- API keyMAILCHIMP_SERVER_PREFIX- Server prefix (e.g.us21)
List audiences
curl -s -u "anystring:$MAILCHIMP_API_KEY" \
"https://$MAILCHIMP_SERVER_PREFIX.api.mailchimp.com/3.0/lists?count=10" | jq '.lists[] | {id, name, stats: {member_count: .stats.member_count, open_rate: .stats.open_rate}}'
List campaigns
curl -s -u "anystring:$MAILCHIMP_API_KEY" \
"https://$MAILCHIMP_SERVER_PREFIX.api.mailchimp.com/3.0/campaigns?count=10" | jq '.campaigns[] | {id, type, status, settings: .settings.subject_line}'
Add subscriber
curl -s -X POST -u "anystring:$MAILCHIMP_API_KEY" \
-H "Content-Type: application/json" \
"https://$MAILCHIMP_SERVER_PREFIX.api.mailchimp.com/3.0/lists/LIST_ID/members" \
-d '{"email_address":"user@example.com","status":"subscribed","merge_fields":{"FNAME":"John","LNAME":"Doe"}}' | jq '{id, email_address, status}'
Get campaign report
curl -s -u "anystring:$MAILCHIMP_API_KEY" \
"https://$MAILCHIMP_SERVER_PREFIX.api.mailchimp.com/3.0/reports/CAMPAIGN_ID" | jq '{emails_sent, opens: {open_rate: .opens.open_rate, unique_opens: .opens.unique_opens}, clicks: {click_rate: .clicks.click_rate}}'
Notes
- Always confirm before sending campaigns or adding subscribers.
More from thinkfleetai/thinkfleet-engine
local-whisper
Local speech-to-text using OpenAI Whisper. Runs fully offline after model download. High quality transcription with multiple model sizes.
149flyio-cli-public
Use the Fly.io flyctl CLI for deploying and operating apps on Fly.io: deploys (local or remote builder), viewing status/logs, SSH/console, secrets/config, scaling, machines, volumes, and Fly Postgres (create/attach/manage databases). Use when asked to deploy to Fly.io, debug fly deploy/build/runtime failures, set up GitHub Actions deploys/previews, or safely manage Fly apps and Postgres.
24kagi-search
Web search using Kagi Search API. Use when you need to search the web for current information, facts, or references. Requires KAGI_API_KEY in the environment.
22feishu-bridge
Connect a Feishu (Lark) bot to ThinkFleet via WebSocket long-connection. No public server, domain, or ngrok required. Use when setting up Feishu/Lark as a messaging channel, troubleshooting the Feishu bridge, or managing the bridge service (start/stop/logs). Covers bot creation on Feishu Open Platform, credential setup, bridge startup, macOS launchd auto-restart, and group chat behavior tuning.
13bambu-local
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
10voice-transcribe
Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).
10