mailchimp_get_audience_insights
Get Mailchimp Audience Insights
MailchimpDescription
Get insights for a Mailchimp audience including growth history, activity, email clients, and geographic locations. Each data source is fetched in parallel and degrades gracefully on failure.
Read-onlyIdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mailchimp_get_audience_insights",
"arguments": {
"audience_id": "abc123",
"reason": "Get audience insights"
}
}
}
hopkin mailchimp audience-insights
| Flag | Type | Required | Description |
|---|---|---|---|
--account | string | Optional | Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts. |
--audience-id | string | Required | The Mailchimp audience/list ID. |
--include-growth-history | boolean | Optional | |
--include-activity | boolean | Optional | |
--include-clients | boolean | Optional | |
--include-locations | boolean | Optional |
{
"mcpServers": {
"mailchimp": {
"url": "https://mailchimp.mcp.hopkin.ai",
"transport": "sse"
}
}
}
- Full insights
- Growth only
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
audience_id |
string |
Required | The Mailchimp audience/list ID.minLength: 1 |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (5)
| Name | Type | Required | Description |
|---|---|---|---|
account_id |
string |
Optional | Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts. |
include_growth_history |
boolean |
Optional | |
include_activity |
boolean |
Optional | |
include_clients |
boolean |
Optional | |
include_locations |
boolean |
Optional |
Examples
Full insights
{
"audience_id": "abc123",
"reason": "Get audience insights"
}
hopkin mailchimp audience-insights --audience-id abc123
Growth only
{
"audience_id": "abc123",
"include_activity": false,
"include_clients": false,
"include_locations": false,
"reason": "Get growth history only"
}
hopkin mailchimp audience-insights --audience-id abc123 --include-activity false --include-clients false --include-locations false