klaviyo_list_lists

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

Get all email lists in your account. Returns list IDs, names, subscriber counts, and creation dates.

Parameters

NameTypeRequiredDescription
_apiKeystringyesKlaviyo private API key

Example call

Arguments

{
  "_apiKey": "your-klaviyo-api-key"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('klaviyo_list_lists', {
  "_apiKey": "your-klaviyo-api-key"
});

Response shape

FieldTypeDescription
dataarrayArray of list objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of list objects",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Resource type (list)"
          },
          "id": {
            "type": "string",
            "description": "List ID"
          },
          "attributes": {
            "type": "object",
            "description": "List attributes",
            "properties": {
              "name": {
                "type": "string",
                "description": "List name"
              },
              "created_at": {
                "type": "string",
                "description": "Creation timestamp"
              },
              "updated_at": {
                "type": "string",
                "description": "Last update timestamp"
              },
              "profile_count": {
                "type": "number",
                "description": "Number of subscribers"
              }
            }
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026