get_automation_summary
Combine two Mailchimp API calls into a single audit overview: count classic automations by status and recent automation campaigns with total emails sent and top titles.
Instructions
Summarise automation activity across Classic Automations and Customer Journeys.
Combines two API calls into a single overview useful for audits and dashboards:
/automations to count Classic workflows by status (sending / paused / draft)
/campaigns?type=automation&since_send_time=N days ago to count and sum what automations have actually sent recently (both Classic and Customer Journey emails show up as type='automation' campaigns)
This is the recommended starting point for "what's my automation stack doing right now?" questions during an account audit. Use list_automations for the raw Classic list. Use search_automation_campaigns for the raw recent automation campaign feed.
Authenticated via API key. Max 10 concurrent requests (2 are issued by this tool). Read-only, safe to retry.
Args: days: Lookback window in days for the recent-sends portion (1-365, default 30).
Returns: JSON with two sections: - classic_automations: total, by_status ({sending, paused, draft, ...}) - recent_automation_campaigns: window_days, total_campaigns, total_emails_sent, top_titles (up to 5 titles ordered by emails_sent desc)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |