mailchimp_list_members

Pack: mailchimp · Endpoint: https://gateway.pipeworx.io/mailchimp/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/mailchimp_list_members for the schema, then POST the same URL with its arguments for the data.

Get subscribers in an audience by ID (e.g., “abc123def456”). Returns email addresses, subscription status, and custom merge fields.

Parameters

NameTypeRequiredDescription
_apiKeystringyesMailchimp API key
list_idstringyesAudience/list ID
countnumbernoNumber of members to return (default 10, max 1000)
offsetnumbernoOffset for pagination (default 0)
statusstringnoFilter by status: subscribed, unsubscribed, cleaned, pending, transactional

Example call

Arguments

{
  "_apiKey": "your-mailchimp-api-key",
  "list_id": "abc123def456"
}

curl

curl -X POST https://gateway.pipeworx.io/mailchimp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mailchimp_list_members","arguments":{"_apiKey":"your-mailchimp-api-key","list_id":"abc123def456"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('mailchimp_list_members', {
  "_apiKey": "your-mailchimp-api-key",
  "list_id": "abc123def456"
});

More examples

{
  "_apiKey": "your-mailchimp-api-key",
  "list_id": "abc123def456",
  "status": "subscribed",
  "count": 100
}

Response shape

FieldTypeDescription
membersarrayArray of audience members
list_idstringAssociated audience/list ID
total_itemsnumberTotal number of members
_linksarrayHAL links
Full JSON Schema
{
  "type": "object",
  "properties": {
    "members": {
      "type": "array",
      "description": "Array of audience members",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Member ID"
          },
          "email_address": {
            "type": "string",
            "description": "Email address"
          },
          "unique_email_id": {
            "type": "string",
            "description": "Unique email ID"
          },
          "email_type": {
            "type": "string",
            "description": "Email type (html or text)"
          },
          "status": {
            "type": "string",
            "enum": [
              "subscribed",
              "unsubscribed",
              "cleaned",
              "pending",
              "transactional"
            ],
            "description": "Subscription status"
          },
          "merge_fields": {
            "type": "object",
            "description": "Custom merge field values"
          },
          "interests": {
            "type": "object",
            "description": "Interest category selections"
          },
          "stats": {
            "type": "object",
            "description": "Member engagement stats",
            "properties": {
              "avg_open_rate": {
                "type": "number",
                "description": "Average open rate"
              },
              "avg_click_rate": {
                "type": "number",
                "description": "Average click rate"
              }
            }
          },
          "ip_signup": {
            "type": "string",
            "description": "IP address signup came from"
          },
          "timestamp_signup": {
            "type": "string",
            "description": "Signup timestamp ISO date"
          },
          "ip_opt": {
            "type": "string",
            "description": "IP address for last opt-in"
          },
          "timestamp_opt": {
            "type": "string",
            "description": "Last opt-in timestamp ISO date"
          },
          "member_rating": {
            "type": "number",
            "description": "Member engagement rating"
          },
          "last_changed": {
            "type": "string",
            "description": "Last changed timestamp ISO date"
          },
          "language": {
            "type": "string",
            "description": "Language preference"
          },
          "vip": {
            "type": "boolean",
            "description": "VIP member flag"
          },
          "email_client": {
            "type": "string",
            "description": "Email client used"
          },
          "location": {
            "type": "object",
            "description": "Location data"
          },
          "last_note": {
            "type": "object",
            "description": "Last note on member"
          },
          "_links": {
            "type": "array",
            "description": "HAL links"
          }
        }
      }
    },
    "list_id": {
      "type": "string",
      "description": "Associated audience/list ID"
    },
    "total_items": {
      "type": "number",
      "description": "Total number of members"
    },
    "_links": {
      "type": "array",
      "description": "HAL links"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mailchimp": {
      "url": "https://gateway.pipeworx.io/mailchimp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026