-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@conorbronsdon/substack-mcp",
"version": "1.2.1",
"description": "Safe creator operations for Substack: rich drafts, Notes, analytics, and consented subscribers. Long-form posts stay draft-only; Notes publish immediately.",
"type": "module",
"bin": {
"substack-mcp": "./dist/index.js",
"substack-mcp-login": "./dist/login.js"
},
"scripts": {
"build": "tsc",
"check:release": "node scripts/check-release-metadata.mjs",
"sync:release": "node scripts/sync-release-metadata.mjs",
"lint": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run src/__tests__",
"probe:contract": "node scripts/probe-contract.mjs --read-only",
"test:release": "node --test scripts/check-release-order.controls.mjs scripts/check-release-metadata.controls.mjs scripts/release-state.controls.mjs scripts/probe-contract.controls.mjs scripts/publish-container.controls.mjs",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run check:release && npm run lint && npm test && npm run test:package",
"version": "npm run sync:release && npm run check:release && git add package-lock.json server.json .codex-plugin/plugin.json .claude-plugin/plugin.json .claude-plugin/marketplace.json .mcp.json",
"lint:cloud": "wrangler types --config cloud/wrangler.jsonc cloud/worker-configuration.d.ts && tsc -p cloud/tsconfig.json && tsc -p cloud/test/tsconfig.json",
"build:cloud": "wrangler deploy --config cloud/wrangler.jsonc --dry-run",
"test:cloud": "vitest run --config cloud/vitest.config.ts",
"test:package": "npm run build && node scripts/test-package.mjs && node scripts/workflow-demo.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-gfm": "3.1.0",
"mdast-util-to-markdown": "2.1.2",
"micromark-extension-gfm": "3.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@cloudflare/vitest-plugin": "^1.1.4",
"@types/mdast": "4.0.4",
"@types/node": "^22.0.0",
"semver": "^7.8.5",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0",
"wrangler": "^4.129.0"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"substack",
"newsletter",
"ai",
"claude",
"mcp-server",
"model-context-protocol",
"cli",
"markdown",
"newsletter-automation",
"content-creation"
],
"license": "MIT",
"author": "Conor Bronsdon",
"repository": {
"type": "git",
"url": "https://github.com/conorbronsdon/substack-mcp.git"
},
"homepage": "https://github.com/conorbronsdon/substack-mcp#readme",
"bugs": {
"url": "https://github.com/conorbronsdon/substack-mcp/issues"
},
"mcpName": "io.github.conorbronsdon/substack-mcp",
"files": [
"dist/**",
"!dist/__tests__/**",
"!dist/**/*.map",
"server.json",
"CHANGELOG.md",
"docs/calendar-sync.md",
"docs/cloud-calendar-sync.md",
"docs/subscribers.md",
"docs/authoring.md",
"docs/export.md",
"docs/analytics-rankings.md",
"docs/remote-images.md",
"docs/draft-changes.md",
"docs/workflow.md",
"docs/tool-contract.md",
"docs/plugins.md",
"docs/containers.md",
"docs/compatibility.md",
"docs/release-checklist.md",
"docs/distribution.md",
"docs/typescript-api.md",
"docs/operator-cli.md",
"docs/http-transport.md",
"docs/errors.md"
]
}