Klaviyo MCP Server

create_event

Track and log customer interactions by generating events with specified metrics, profile details, and custom properties for marketing automation via Klaviyo MCP Server.

Input Schema

NameRequiredDescriptionDefault
metricYesMetric information for the event
profileYesProfile information for the event
propertiesNoAdditional properties for the event
timeNoISO timestamp for the event
valueNoNumeric value for the event

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "metric": { "additionalProperties": false, "description": "Metric information for the event", "properties": { "name": { "description": "Name of the metric", "type": "string" } }, "required": [ "name" ], "type": "object" }, "profile": { "additionalProperties": false, "description": "Profile information for the event", "properties": { "email": { "description": "Email of the customer", "format": "email", "type": "string" } }, "required": [ "email" ], "type": "object" }, "properties": { "additionalProperties": {}, "description": "Additional properties for the event", "type": "object" }, "time": { "description": "ISO timestamp for the event", "type": "string" }, "value": { "description": "Numeric value for the event", "type": "number" } }, "required": [ "metric", "profile" ], "type": "object" }
ID: l2ix14vt60