Access, auth, and limits
OAuth with dynamic client registration means the connection bootstraps itself: no API key, no client id, no manual app registration. What gates access is the Klaviyo role on your seat, so a Viewer cannot connect at all and there is no separate MCP entitlement to buy.
read-only=true is the setting to reach for first. Klaviyo can send to your whole list, and a hard read-only connection removes that risk entirely rather than relying on the agent to behave. Add core-tools-only=true if your client starts truncating the tool list, which forty tools will do in a smaller context window. Note that mcp.klaviyo.com is the endpoint; developers.klaviyo.com/mcp, which some listings carry, is the documentation host.
Where it works and what to build
Any OAuth-capable MCP client works, and the multi-account configuration file is the feature agencies will care about, since it lets one connection reach several Klaviyo accounts without re-authorizing between them.
The strongest use is flow and segment archaeology. Ask which flows have not converted in ninety days, which segments overlap enough to be redundant, or which templates are still referenced by an active campaign, and the agent walks the API and answers. That is tedious clicking in the UI and a natural fit for a read-only connection, which is exactly the pairing to start with before granting anything that can send.
How to connect Klaviyo MCP to Claude Desktop
Add this block to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows), then restart Claude Desktop. Cursor and Codex use a similar schema.
{
"mcpServers": {
"klaviyo": {
"command": "npx",
"args": ["mcp-remote", "<YOUR_MCP_URL>"]
}
}
}
// HTTP-transport MCP. Get your <YOUR_MCP_URL> from the vendor dashboard.
// Server source: https://mcp.klaviyo.com/mcp
// Claude Code (one-liner): claude mcp add klaviyo <YOUR_MCP_URL> --transport httpSome MCP servers require an API key. Check the source page for setup: mcp.klaviyo.com/mcp.
Does Klaviyo MCP cost extra?
Klaviyo ships an official MCP server that uses your existing subscription credentials.
- No separate MCP licence to buy. You pay for your Klaviyo plan, the MCP server queries that account.
- Whether it's gated to a specific tier wasn't extracted automatically — verify the access requirements on the MCP page or pricing docs.
Klaviyo also publishes a REST API
Klaviyo's API is included with every paid plan, but SMS, MMS, and WhatsApp are billed per message.
What you can do with Klaviyo from an AI agent
Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.
Skip the dashboard, ask Claude
- "What campaigns underperformed this week?" answered in seconds
- Quick one-off questions without leaving the editor
- Pipe Klaviyo data into your personal notes / docs without writing a script
Run client analysis at agent speed
- Hand the MCP server to your team — every consultant can ask Claude about any client's Klaviyo account
- Multi-account workflows without context-switching the Klaviyo UI
- Reports you'd normally spend hours on, done before standup
Production agent workflows
- Embed in your internal Codex / Cursor agents that triage Klaviyo data daily
- Combine with other MCP servers in a multi-step agent chain
- Constrain agents to read-only roles to keep production Klaviyo safe
Limits and gotchas
- Official MCP server — published by Klaviyo themselves, so it should track product changes.
- Fallback: the REST API works for any flow the MCP server doesn't cover.
- Rate limits: MCP calls count against your underlying Klaviyo API quota. Burst usage from a curious agent can drain a daily allowance fast.
Agent-readiness verdict
A serious implementation with the two knobs that matter in practice: a hard read-only mode and a way to shrink the tool list when context is tight. The role gate is sensible for a platform that can email your entire list.
Good agent fit with official MCP support. Klaviyo offers an official MCP server and documented public API with native Claude and ChatGPT integration, making it straightforward to add to agentic workflows. The missing OpenAPI spec and lack of webhooks limit some automation patterns, but the MCP availability handles most agent use cases.
Scored by Joonas (TMB).
Klaviyo MCP & API FAQ
Is the Klaviyo MCP server official?+
Can I use the Klaviyo MCP with Cursor or Codex?+
Does Klaviyo have a public API?+
Sources
- Klaviyo official site: https://www.klaviyo.com
- MCP server page: https://mcp.klaviyo.com/mcp
- API docs: https://developers.klaviyo.com/en/docs/klaviyo_mcp_server
Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.
10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

