Klaviyo
liveSaaSProductivityKlaviyo email marketing — list profiles, email lists, and campaigns; retrieve campaign details via the Klaviyo API.
Tools
klaviyo_list_profilesList profiles (contacts) from Klaviyo. Supports optional filtering and page size.
No parameters required.
Try it
klaviyo_get_profileGet a single Klaviyo profile by its ID. Returns full profile details.
No parameters required.
Try it
klaviyo_list_listsList all email lists in Klaviyo.
No parameters required.
Try it
klaviyo_list_campaignsList campaigns from Klaviyo. Optionally filter by status (draft, scheduled, sent).
No parameters required.
Try it
klaviyo_get_campaignGet a single Klaviyo campaign by its ID. Returns full campaign details.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/klaviyo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/klaviyo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"klaviyo_list_profiles","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("klaviyo_list_profiles", {});// Or ask in plain English:
const answer = await px.ask("klaviyo email marketing — list profiles, email lists, and campaigns; retrieve campaign details via the klaviyo api");