get_list
Retrieve specific customer lists using an ID from the Klaviyo MCP Server. This tool simplifies accessing and managing list data for targeted marketing automation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the list to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the list to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}