-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "@automatelab/content-distribution-mcp",
"version": "2.2.1",
"description": "Multi-channel content distribution MCP server. Publish one piece of content to DEV.to, Hashnode, GitHub Discussions, Reddit, Bluesky, LinkedIn, Medium, and Twitter with idempotent state.",
"type": "module",
"main": "dist/index.js",
"bin": {
"content-distribution-mcp": "dist/index.js",
"cdmcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"js-yaml": "^4.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"content-distribution",
"devto",
"hashnode",
"reddit",
"bluesky",
"linkedin",
"twitter",
"medium",
"github-discussions",
"automation",
"model-context-protocol"
],
"author": "automatelab",
"license": "MIT",
"homepage": "https://automatelab.tech/products/mcp/content-distribution-mcp/",
"repository": {
"type": "git",
"url": "https://github.com/AutomateLab-tech/content-distribution-mcp"
}
}