-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.71 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@thenavidm/substack-mcp-cli",
"version": "2.2.2",
"description": "Substack MCP server for Claude Code and AI agents. 65 tools for drafts, posts, Notes, subscribers, analytics, tags, comments and researching other publications.",
"type": "module",
"main": "./dist/index.js",
"bin": {
"substack-mcp": "dist/index.js",
"substack-cli": "dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"check:counts": "node scripts/check-counts.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"peerDependencies": {
"playwright": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"license": "MIT",
"author": "Navid Moazzez (https://navid.me)",
"homepage": "https://github.com/thenavidm/substack-mcp-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thenavidm/substack-mcp-cli.git"
},
"bugs": {
"url": "https://github.com/thenavidm/substack-mcp-cli/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"substack",
"substack-api",
"newsletter",
"mcp-server",
"claude",
"claude-code",
"ai-agents",
"llm-tools"
],
"files": [
"dist",
"README.md",
"SKILL.md",
"LICENSE"
],
"contributors": [
"Navid Moazzez (https://navid.me)"
]
}