Skip to content

Commit 8edbf2d

Browse files
authored
Add Klaviyo MCP server (#222)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent d619f3f commit 8edbf2d

1 file changed

Lines changed: 71 additions & 0 deletions

File tree

servers/com.klaviyo-mcp-uvx.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.klaviyo-mcp-uvx",
4+
"name": "Klaviyo (uvx)",
5+
"alias": "klaviyo",
6+
"description": "Connect to Klaviyo's marketing platform to manage profiles, lists, segments, events, campaigns, flows, and catalogs through natural language. Official Klaviyo MCP server run locally via uvx.",
7+
"logo": "https://avatars.githubusercontent.com/u/1947230?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"communication"
11+
],
12+
"tags": [
13+
"klaviyo",
14+
"email",
15+
"sms",
16+
"marketing",
17+
"crm",
18+
"automation"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "uvx",
23+
"args": [
24+
"klaviyo-mcp-server"
25+
],
26+
"env": {
27+
"PRIVATE_API_KEY": "${input:PRIVATE_API_KEY}"
28+
},
29+
"metadata": {
30+
"inputs": [
31+
{
32+
"id": "PRIVATE_API_KEY",
33+
"label": "Klaviyo Private API Key",
34+
"description": "Klaviyo private API key used to authenticate API requests. Grant the scopes the server needs (e.g. Profiles Full, Lists Full, Segments Read, Events Full, Catalogs Read, Campaigns Read, Flows Read).",
35+
"type": "text",
36+
"required": true,
37+
"secret": true,
38+
"placeholder": "pk_****************",
39+
"obtain": {
40+
"url": "https://www.klaviyo.com/settings/account/api-keys",
41+
"instructions": "1. Log in to Klaviyo\n2. Click your organization name (bottom left) and open Settings\n3. Go to API keys\n4. Click 'Create Private API Key'\n5. Name the key and select the required scopes (Profiles Full, Lists Full, Segments Read, Events Full, Catalogs Read, Campaigns Read, Flows Read)\n6. Click 'Create' and copy the key (it cannot be viewed again)",
42+
"button_label": "Create Private API Key"
43+
}
44+
}
45+
]
46+
}
47+
},
48+
"auth": {
49+
"type": "api_key",
50+
"instructions": "Create a Private API Key in Klaviyo at Settings > API keys with the required scopes, then provide it as PRIVATE_API_KEY."
51+
},
52+
"contributor": {
53+
"name": "Klaviyo",
54+
"github": "klaviyo",
55+
"url": "https://www.klaviyo.com"
56+
},
57+
"links": {
58+
"homepage": "https://www.klaviyo.com",
59+
"documentation": "https://developers.klaviyo.com/en/docs/klaviyo_mcp_server"
60+
},
61+
"platforms": [
62+
"all"
63+
],
64+
"capabilities": {
65+
"tools": true,
66+
"resources": false,
67+
"prompts": false,
68+
"read_only_mode": true
69+
},
70+
"changelog_url": "https://pypi.org/project/klaviyo-mcp-server/#history"
71+
}

0 commit comments

Comments
 (0)