mailchimp_list_automations

List Mailchimp Automations

Mailchimp

Description

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"
    }
  }
}

Parameters

NameTypeRequiredDescription
reason string Required Why this tool call is neededminLength: 1, maxLength: 500
Optional parameters (7)
NameTypeRequiredDescription
limit integer Optional Maximum number of results to return (1–100). Default: 20.min: 1, max: 100
cursor string Optional Opaque pagination cursor from a previous response.
refresh boolean Optional Force a fresh fetch bypassing the cache.
account_id string Optional Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts.
status array Optional Filter automations by status. E.g. ["sending", "paused"].
search string Optional Filter automations by title (case-insensitive substring match).
connection_id string Optional Optional ID of a specific connection to use for this call. Omit to use the actor's default connection for this network. Call <platform>_list_connections to discover available connection IDs.

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