mailchimp_list_automations
List Mailchimp Automations
MailchimpDescription
List automations (classic automations / customer journeys) in the Mailchimp account with status filtering, title search, and pagination.
Read-onlyIdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mailchimp_list_automations",
"arguments": {
"reason": "List all automations"
}
}
}
hopkin mailchimp -automations
| Flag | Type | Required | Description |
|---|---|---|---|
--account | string | Optional | Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts. |
--automation-id | string | Required | The Mailchimp automation (classic automation / customer journey) ID. |
{
"mcpServers": {
"mailchimp": {
"url": "https://mailchimp.mcp.hopkin.ai",
"transport": "sse"
}
}
}
- List all
- Filter by status
- Search
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
automation_id |
string |
Required | The Mailchimp automation (classic automation / customer journey) ID. |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (1)
| 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. |
Examples
List all
{
"reason": "List all automations"
}
hopkin mailchimp -automations
Filter by status
{
"status": [
"sending"
],
"reason": "List active automations"
}
hopkin mailchimp -automations --status sending
Search
{
"search": "Welcome",
"reason": "Find welcome automations"
}
hopkin mailchimp -automations --search Welcome