-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "kit-mcp-server",
"version": "1.0.2",
"mcpName": "io.github.aplaceforallmystuff/mcp-kit",
"description": "MCP server for Kit.com (formerly ConvertKit) email marketing API - manage subscribers, tags, sequences, broadcasts, forms, and more",
"type": "module",
"main": "dist/index.js",
"bin": {
"kit-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"model-context-protocol",
"kit",
"convertkit",
"email",
"newsletter",
"email-marketing",
"subscribers",
"automation",
"claude",
"ai",
"anthropic"
],
"author": "Jim Christian <jim@jimchristian.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aplaceforallmystuff/mcp-kit.git"
},
"bugs": {
"url": "https://github.com/aplaceforallmystuff/mcp-kit/issues"
},
"homepage": "https://github.com/aplaceforallmystuff/mcp-kit#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.19.6",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
}
}