> **Building with AI coding agents?** If you're using an AI coding agent, install the official Scalekit plugin. It gives your agent full awareness of the Scalekit API — reducing hallucinations and enabling faster, more accurate code generation.
>
> - **Claude Code**: `/plugin marketplace add scalekit-inc/claude-code-authstack` then `/plugin install <auth-type>@scalekit-auth-stack`
> - **GitHub Copilot CLI**: `copilot plugin marketplace add scalekit-inc/github-copilot-authstack` then `copilot plugin install <auth-type>@scalekit-auth-stack`
> - **Codex**: run the bash installer, restart, then open Plugin Directory and enable `<auth-type>`
> - **Skills CLI** (Windsurf, Cline, 40+ agents): `npx skills add scalekit-inc/skills --list` then `--skill <skill-name>`
>
> `<auth-type>` / `<skill-name>`: `agentkit`, `full-stack-auth`, `mcp-auth`, `modular-sso`, `modular-scim` — [Full setup guide](https://docs.scalekit.com/dev-kit/build-with-ai/)

---

# Mailchimp

Connect your agent to Mailchimp to manage subscribers, campaigns, lists, and email reports using OAuth 2.0.

**Authentication:** OAuth 2.0
**Categories:** Marketing, Email, Automation
> Image: Mailchimp connector card shown in Scalekit's Create Connection search

## What you can do

Connect this agent connector to let your agent:

- **Manage audiences** — create, update, and delete audiences; list all audiences and their settings
- **Manage members** — add, update, upsert, archive, and permanently delete subscribers; get membership and tag details
- **Manage segments** — create saved and static segments; list, update, and delete segments; list segment members
- **Manage campaigns** — create, update, and delete campaigns; set HTML content; send, schedule, and unschedule campaigns; send test emails
- **Manage templates** — create, update, delete, and list custom HTML email templates
- **Access reports** — retrieve campaign send reports including opens, clicks, email activity, and unsubscribes
- **Manage automations** — list, get, start, and pause classic automation workflows
- **Track batch operations** — check the status of asynchronous batch jobs

## Authentication

This connector uses **OAuth 2.0**. Scalekit acts as the OAuth client: it redirects your user to Mailchimp, obtains an access token, and automatically refreshes it. Your agent code never handles tokens directly.

## Set up the connector

Register your Mailchimp account with Scalekit so Scalekit handles the OAuth flow and token refresh automatically. The connection name you create is used to identify and invoke the connection in your code.

1. ## Set up auth redirects

   - In [Scalekit dashboard](https://app.scalekit.com), go to **AgentKit** > **Connections** > **Create Connection**. Find **Mailchimp** and click **Create**. Copy the redirect URI — it looks like `https:///sso/v1/oauth//callback`.

   - Log in to your [Mailchimp account](https://mailchimp.com) and go to **Account & Billing** > **Extras** > **API keys** > **OAuth apps**.

   > Image: Screenshot

   - Click **Register An App**, fill in the app details, and paste the redirect URI from Scalekit into the redirect URI field.

   > Image: Screenshot

2. ## Get client credentials

   - In your Mailchimp OAuth app, copy the **Client ID** and **Client Secret**.

3. ## Add credentials in Scalekit

   - In [Scalekit dashboard](https://app.scalekit.com), open the Mailchimp connection you created and enter:
     - **Client ID**
     - **Client Secret**

   > Image: Screenshot

   > note: No scopes required
>
> Mailchimp OAuth does not use scopes — all authenticated users get access to all API endpoints their plan supports.

   - Click **Save**.

4. ## Connect a user account

   - Click the **Connected Accounts** tab, then **Add Account**.
   - Enter your user's ID and click **Create Account** — you'll be redirected to Mailchimp to authorize access.

   > Image: Screenshot

## Code examples

Connect a user's Mailchimp account and make API calls on their behalf — Scalekit handles OAuth and token management automatically.

## Proxy API calls

Make authenticated requests to any Mailchimp API endpoint through the Scalekit proxy.

  ### Node.js

```typescript

const connectionName = 'mailchimp'; // your connection name from Scalekit dashboard
const identifier = 'user_123';      // your unique user identifier

const scalekit = new ScalekitClient(
  process.env.SCALEKIT_ENV_URL,
  process.env.SCALEKIT_CLIENT_ID,
  process.env.SCALEKIT_CLIENT_SECRET
);
const actions = scalekit.actions;

// Authenticate the user (first time only)
const { link } = await actions.getAuthorizationLink({ connectionName, identifier });
console.log('Authorize Mailchimp:', link);

// Make a request through the Scalekit proxy
const result = await actions.request({
  connectionName,
  identifier,
  path: '/ping',
  method: 'GET',
});
console.log(result);
```

  ### Python

```python

from dotenv import load_dotenv
load_dotenv()

connection_name = "mailchimp"
identifier = "user_123"

scalekit_client = scalekit.client.ScalekitClient(
    client_id=os.getenv("SCALEKIT_CLIENT_ID"),
    client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),
    env_url=os.getenv("SCALEKIT_ENV_URL"),
)
actions = scalekit_client.actions

# Authenticate the user (first time only)
link_response = actions.get_authorization_link(
    connection_name=connection_name,
    identifier=identifier
)
print("Authorize Mailchimp:", link_response.link)

# Make a request through the Scalekit proxy
result = actions.request(
    connection_name=connection_name,
    identifier=identifier,
    path="/ping",
    method="GET"
)
print(result)
```

## Execute tools

Use `executeTool` (Node.js) or `execute_tool` (Python) to call any Mailchimp tool by name with typed parameters.

### Add a subscriber

  ### Node.js

```typescript
const member = await actions.executeTool({
  connectionName,
  identifier,
  toolName: 'mailchimp_list_member_add',
  parameters: {
    list_id: 'abc123def',
    email_address: 'jane.smith@example.com',
    status: 'subscribed',
    first_name: 'Jane',
    last_name: 'Smith',
  },
});
console.log('Added member:', member.id);
```

  ### Python

```python
member = actions.execute_tool(
    connection_name=connection_name,
    identifier=identifier,
    tool_name="mailchimp_list_member_add",
    parameters={
        "list_id": "abc123def",
        "email_address": "jane.smith@example.com",
        "status": "subscribed",
        "first_name": "Jane",
        "last_name": "Smith",
    },
)
print("Added member:", member["id"])
```

### Create and send a campaign

  ### Node.js

```typescript
    // Create the campaign
    const campaign = await actions.executeTool({
      connectionName,
      identifier,
      toolName: 'mailchimp_campaign_create',
      parameters: {
        type: 'regular',
        list_id: 'abc123def',
        subject_line: 'Your April newsletter',
        from_name: 'Acme Corp',
        reply_to: 'hello@acme.com',
      },
    });

    // Set HTML content
    await actions.executeTool({
      connectionName,
      identifier,
      toolName: 'mailchimp_campaign_content_set',
      parameters: {
        campaign_id: campaign.id,
        html: '<h1>Hello!</h1>Here is your monthly update.
',
      },
    });

    // Send the campaign
    await actions.executeTool({
      connectionName,
      identifier,
      toolName: 'mailchimp_campaign_send',
      parameters: { campaign_id: campaign.id },
    });
    console.log('Campaign sent:', campaign.id);
    ```

  ### Python

```python
    # Create the campaign
    campaign = actions.execute_tool(
        connection_name=connection_name,
        identifier=identifier,
        tool_name="mailchimp_campaign_create",
        parameters={
            "type": "regular",
            "list_id": "abc123def",
            "subject_line": "Your April newsletter",
            "from_name": "Acme Corp",
            "reply_to": "hello@acme.com",
        },
    )

    # Set HTML content
    actions.execute_tool(
        connection_name=connection_name,
        identifier=identifier,
        tool_name="mailchimp_campaign_content_set",
        parameters={
            "campaign_id": campaign["id"],
            "html": "<h1>Hello!</h1>Here is your monthly update.
",
        },
    )

    # Send the campaign
    actions.execute_tool(
        connection_name=connection_name,
        identifier=identifier,
        tool_name="mailchimp_campaign_send",
        parameters={"campaign_id": campaign["id"]},
    )
    print("Campaign sent:", campaign["id"])
    ```

### Get campaign report

  ### Node.js

```typescript
const report = await actions.executeTool({
  connectionName,
  identifier,
  toolName: 'mailchimp_report_get',
  parameters: { campaign_id: 'abc123' },
});
console.log(`Opens: ${report.opens.open_rate}, Clicks: ${report.clicks.click_rate}`);
```

  ### Python

```python
report = actions.execute_tool(
    connection_name=connection_name,
    identifier=identifier,
    tool_name="mailchimp_report_get",
    parameters={"campaign_id": "abc123"},
)
print(f"Opens: {report['opens']['open_rate']}, Clicks: {report['clicks']['click_rate']}")
```

## Tool list

## Tool list

### `mailchimp_ping`

Health check — returns a simple "Everything's Chimpy!" response if your API key is valid.

### `mailchimp_account_info`

Retrieve details about the authenticated Mailchimp account, including plan, contact info, and industry.

### `mailchimp_lists_list`

List all Mailchimp audiences (lists) in the account with pagination and filtering options.

Parameters:

- `count` (`number`, optional): Number of audiences to return (default 10, max 1000).
- `offset` (`number`, optional): Pagination offset.
- `sort_field` (`string`, optional): Sort audiences by field: `date_created` or `campaign_last_sent`.
- `sort_dir` (`string`, optional): Sort direction: `ASC` or `DESC`.
- `before_date_created` (`string`, optional): Filter audiences created before this ISO 8601 datetime.

### `mailchimp_list_get`

Retrieve details about a specific Mailchimp audience by its list ID.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience. Get it from `mailchimp_lists_list`.
- `fields` (`string`, optional): Comma-separated list of fields to include in the response.

### `mailchimp_list_create`

Create a new Mailchimp audience. Requires a contact address and campaign defaults. Note: free plans allow only one audience.

Parameters:

- `name` (`string`, required): The name of the audience.
- `permission_reminder` (`string`, required): A reminder for subscribers about why they were added (e.g. "You subscribed to our newsletter.").
- `from_name` (`string`, required): Default sender display name for campaigns.
- `from_email` (`string`, required): Default sender email address (must be verified).
- `email_type_option` (`boolean`, required): Set to `true` to let subscribers choose HTML or plain text email format.
- `contact_company` (`string`, required): Company name for the audience contact address.
- `contact_address` (`string`, required): Street address for the audience contact address.
- `contact_city` (`string`, required): City for the audience contact address.
- `contact_state` (`string`, required): State or province for the audience contact address.
- `contact_zip` (`string`, required): ZIP or postal code for the audience contact address.
- `contact_country` (`string`, required): Two-letter ISO country code for the audience contact address (e.g. `US`).
- `subject` (`string`, optional): Default campaign subject line.
- `language` (`string`, optional): Default language for the audience (ISO 639-1 code, e.g. `en`).

### `mailchimp_list_update`

Update settings for a Mailchimp audience such as name, permission reminder, or sender details.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience. Get it from `mailchimp_lists_list`.
- `name` (`string`, optional): Updated audience name.
- `permission_reminder` (`string`, optional): Updated permission reminder text.
- `from_name` (`string`, optional): Updated default sender display name.
- `from_email` (`string`, optional): Updated default sender email address.

### `mailchimp_list_delete`

Permanently delete a Mailchimp audience and all its member data. This action is irreversible.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience to delete.

### `mailchimp_list_members_list`

List all members of a Mailchimp audience with filtering by status, segment, and pagination.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience. Get it from `mailchimp_lists_list`.
- `status` (`string`, optional): Filter by subscription status: `subscribed`, `unsubscribed`, `cleaned`, `pending`, or `transactional`.
- `count` (`number`, optional): Number of members to return (default 10, max 1000).
- `offset` (`number`, optional): Pagination offset.
- `email_address` (`string`, optional): Filter to a specific email address.
- `since_last_changed` (`string`, optional): Filter members changed after this ISO 8601 datetime.
- `segment_id` (`string`, optional): Filter members in a specific segment.

### `mailchimp_list_member_get`

Retrieve information about a specific audience member by their MD5-hashed email address.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): The MD5 hash of the member's email address (lowercase). Get it from `mailchimp_list_members_list`.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_list_member_add`

Add a new member to a Mailchimp audience.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `email_address` (`string`, required): The member's email address.
- `status` (`string`, required): Subscription status: `subscribed`, `unsubscribed`, `cleaned`, or `pending`.
- `first_name` (`string`, optional): Member's first name.
- `last_name` (`string`, optional): Member's last name.
- `tags` (`string`, optional): JSON array of tags to apply (e.g. `["vip","beta"]`).

### `mailchimp_list_member_update`

Update an existing audience member's details such as email, status, or name.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).
- `status` (`string`, optional): Updated subscription status: `subscribed`, `unsubscribed`, `cleaned`, or `pending`.
- `email_address` (`string`, optional): Updated email address.
- `first_name` (`string`, optional): Updated first name.
- `last_name` (`string`, optional): Updated last name.

### `mailchimp_list_member_upsert`

Add or update a member in an audience. Creates the member if they don't exist; updates them if they do.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).
- `email_address` (`string`, required): The member's email address.
- `status_if_new` (`string`, required): Status to set if this is a new subscriber: `subscribed`, `unsubscribed`, `cleaned`, or `pending`.
- `status` (`string`, optional): Updated subscription status for existing members.
- `first_name` (`string`, optional): First name.
- `last_name` (`string`, optional): Last name.

### `mailchimp_list_member_archive`

Archive a member from a Mailchimp audience (sets status to unsubscribed without permanently deleting).

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).

### `mailchimp_list_member_delete_permanent`

Permanently delete a member from a Mailchimp audience. This cannot be undone.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).

### `mailchimp_list_member_tags_get`

Retrieve all tags applied to a specific audience member.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).

### `mailchimp_list_member_tags_update`

Add or remove tags on a specific audience member.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `subscriber_hash` (`string`, required): MD5 hash of the member's email address (lowercase).
- `tags` (`string`, required): JSON array of tag objects, each with `name` and `status` (`active` or `inactive`). Example: `[{"name":"vip","status":"active"}]`.

### `mailchimp_segments_list`

List all segments in a Mailchimp audience.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience. Get it from `mailchimp_lists_list`.
- `type` (`string`, optional): Filter by segment type: `saved`, `static`, or `fuzzy`.
- `count` (`number`, optional): Number of segments to return.
- `offset` (`number`, optional): Pagination offset.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_segment_get`

Retrieve details about a specific audience segment.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `segment_id` (`string`, required): The unique ID of the segment. Get it from `mailchimp_segments_list`.

### `mailchimp_segment_create`

Create a new segment in a Mailchimp audience. Provide either `options` for a saved/conditional segment or `static_segment` for a static list of emails.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `name` (`string`, required): Name for the segment.
- `static_segment` (`string`, optional): JSON array of email addresses for a static segment (e.g. `["a@example.com","b@example.com"]`).
- `options` (`object`, optional): Conditions object for a saved/conditional segment.

### `mailchimp_segment_update`

Update an existing audience segment's name or member conditions.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `segment_id` (`string`, required): The unique ID of the segment.
- `name` (`string`, optional): Updated segment name.
- `static_segment` (`string`, optional): Updated JSON array of email addresses for a static segment.

### `mailchimp_segment_delete`

Delete a segment from a Mailchimp audience.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `segment_id` (`string`, required): The unique ID of the segment to delete.

### `mailchimp_segment_members_list`

List all members of a specific audience segment.

Parameters:

- `list_id` (`string`, required): The unique ID of the audience.
- `segment_id` (`string`, required): The unique ID of the segment.
- `count` (`number`, optional): Number of members to return.
- `offset` (`number`, optional): Pagination offset.

### `mailchimp_campaigns_list`

List all campaigns in the Mailchimp account with filtering by type, status, and date.

Parameters:

- `type` (`string`, optional): Filter by campaign type: `regular`, `plaintext`, `absplit`, `rss`, or `variate`.
- `status` (`string`, optional): Filter by status: `save`, `paused`, `schedule`, `sending`, or `sent`.
- `count` (`number`, optional): Number of campaigns to return.
- `offset` (`number`, optional): Pagination offset.
- `list_id` (`string`, optional): Filter campaigns by audience ID.
- `before_send_time` (`string`, optional): Filter campaigns scheduled before this ISO 8601 datetime.
- `since_send_time` (`string`, optional): Filter campaigns scheduled after this ISO 8601 datetime.
- `sort_field` (`string`, optional): Sort by field: `create_time` or `send_time`.

### `mailchimp_campaign_get`

Retrieve details about a specific campaign by its ID.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign. Get it from `mailchimp_campaigns_list`.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_campaign_create`

Create a new Mailchimp campaign. Use `mailchimp_campaign_content_set` to add HTML content before sending.

Parameters:

- `type` (`string`, required): Campaign type: `regular`, `plaintext`, `absplit`, `rss`, or `variate`.
- `list_id` (`string`, required): The audience ID to send this campaign to.
- `subject_line` (`string`, optional): Subject line for the campaign.
- `preview_text` (`string`, optional): Preview text shown in inbox previews.
- `title` (`string`, optional): Internal campaign title (not shown to subscribers).
- `from_name` (`string`, optional): Sender display name.
- `reply_to` (`string`, optional): Reply-to email address.
- `segment_id` (`string`, optional): Send only to members of this segment ID.

### `mailchimp_campaign_update`

Update settings for an existing campaign such as subject line, sender name, or audience.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `subject_line` (`string`, optional): Updated subject line.
- `preview_text` (`string`, optional): Updated preview text.
- `title` (`string`, optional): Updated campaign title.
- `from_name` (`string`, optional): Updated sender display name.
- `reply_to` (`string`, optional): Updated reply-to email address.
- `list_id` (`string`, optional): Updated audience ID.

### `mailchimp_campaign_delete`

Delete a campaign. Only campaigns with status `save` or `paused` can be deleted.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign to delete.

### `mailchimp_campaign_content_get`

Retrieve the HTML and plain-text content of a campaign.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_campaign_content_set`

Set the HTML content for a campaign. Call this before sending.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `html` (`string`, optional): Raw HTML for the campaign body.
- `plain_text` (`string`, optional): Plain text version of the campaign.
- `template_id` (`string`, optional): ID of a saved template to use as the campaign content.

### `mailchimp_campaign_send`

Send a campaign immediately. The campaign must have a subject line, content, and a valid recipient list.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign to send.

### `mailchimp_campaign_schedule`

Schedule a campaign to send at a specific time. Requires a paid Mailchimp plan.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `schedule_time` (`string`, required): The UTC datetime to send the campaign in ISO 8601 format (e.g. `2024-12-01T10:00:00Z`).

### `mailchimp_campaign_unschedule`

Cancel a scheduled campaign and return it to draft status.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the scheduled campaign.

### `mailchimp_campaign_test`

Send a test email for a campaign to one or more addresses.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `test_emails` (`string`, required): JSON-encoded array of email addresses to send the test to (e.g. `["you@example.com"]`).
- `send_type` (`string`, optional): Email format to send: `html` (default) or `plaintext`.

### `mailchimp_templates_list`

List all email templates in the Mailchimp account.

Parameters:

- `type` (`string`, optional): Filter by template type: `user`, `gallery`, or `base`.
- `category` (`string`, optional): Filter by template category.
- `count` (`number`, optional): Number of templates to return.
- `offset` (`number`, optional): Pagination offset.
- `sort_field` (`string`, optional): Sort by `date_created` or `name`.
- `sort_dir` (`string`, optional): Sort direction: `ASC` or `DESC`.

### `mailchimp_template_get`

Retrieve details about a specific email template by its ID.

Parameters:

- `template_id` (`string`, required): The unique ID of the template. Get it from `mailchimp_templates_list`.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_template_create`

Create a new custom HTML email template.

Parameters:

- `name` (`string`, required): Name for the template.
- `html` (`string`, required): HTML content of the template.
- `folder_id` (`string`, optional): ID of the folder to place the template in.

### `mailchimp_template_update`

Update an existing email template's name or HTML content.

Parameters:

- `template_id` (`string`, required): The unique ID of the template.
- `name` (`string`, optional): Updated template name.
- `html` (`string`, optional): Updated HTML content.

### `mailchimp_template_delete`

Delete a custom email template.

Parameters:

- `template_id` (`string`, required): The unique ID of the template to delete.

### `mailchimp_reports_list`

List campaign reports for the account with filtering by type and date.

Parameters:

- `type` (`string`, optional): Filter by campaign type: `regular`, `plaintext`, `absplit`, `rss`, or `variate`.
- `count` (`number`, optional): Number of reports to return.
- `offset` (`number`, optional): Pagination offset.
- `since_send_time` (`string`, optional): Filter reports for campaigns sent after this ISO 8601 datetime.

### `mailchimp_report_get`

Retrieve the summary report for a specific sent campaign.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign. Get it from `mailchimp_campaigns_list`.
- `fields` (`string`, optional): Comma-separated list of fields to include.

### `mailchimp_report_click_details`

Retrieve click activity details for a sent campaign, showing which links were clicked.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `count` (`number`, optional): Number of results to return.
- `offset` (`number`, optional): Pagination offset.

### `mailchimp_report_open_details`

Retrieve open activity details for a sent campaign, showing who opened the email.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `count` (`number`, optional): Number of results to return.
- `offset` (`number`, optional): Pagination offset.

### `mailchimp_report_email_activity`

Retrieve per-subscriber email activity (opens, clicks, bounces) for a sent campaign.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `count` (`number`, optional): Number of results to return.
- `offset` (`number`, optional): Pagination offset.
- `since` (`string`, optional): Filter activity since this ISO 8601 datetime.

### `mailchimp_report_unsubscribes`

Retrieve the list of members who unsubscribed from a sent campaign.

Parameters:

- `campaign_id` (`string`, required): The unique ID of the campaign.
- `count` (`number`, optional): Number of results to return.
- `offset` (`number`, optional): Pagination offset.

### `mailchimp_automations_list`

List all classic automation workflows in the Mailchimp account.

Parameters:

- `count` (`number`, optional): Number of automations to return.
- `offset` (`number`, optional): Pagination offset.
- `status` (`string`, optional): Filter by status: `save`, `paused`, or `sending`.
- `before_create_time` (`string`, optional): Filter automations created before this ISO 8601 datetime.

### `mailchimp_automation_get`

Retrieve details about a specific classic automation workflow.

Parameters:

- `workflow_id` (`string`, required): The unique ID of the automation workflow. Get it from `mailchimp_automations_list`.

### `mailchimp_automation_start`

Start all emails in a paused or saved automation workflow.

Parameters:

- `workflow_id` (`string`, required): The unique ID of the automation workflow.

### `mailchimp_automation_pause`

Pause all emails in an active automation workflow.

Parameters:

- `workflow_id` (`string`, required): The unique ID of the automation workflow.

### `mailchimp_batch_status_get`

Check the status of a batch operation by its batch ID.

Parameters:

- `batch_id` (`string`, required): The unique ID of the batch operation.


---

## More Scalekit documentation

| Resource | What it contains | When to use it |
|----------|-----------------|----------------|
| [/llms.txt](/llms.txt) | Structured index with routing hints per product area | Start here — find which documentation set covers your topic before loading full content |
| [/llms-full.txt](/llms-full.txt) | Complete documentation for all Scalekit products in one file | Use when you need exhaustive context across multiple products or when the topic spans several areas |
| [sitemap-0.xml](https://docs.scalekit.com/sitemap-0.xml) | Full URL list of every documentation page | Use to discover specific page URLs you can fetch for targeted, page-level answers |
