@damusix/ghost-mcp 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ghost-mcp.js +2 -0
- package/dist/index.mjs +0 -0
- package/package.json +53 -52
package/bin/ghost-mcp.js
ADDED
package/dist/index.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,53 +1,54 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@damusix/ghost-mcp",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "MCP server for Ghost CMS — manage content, members, newsletters, and more via LLMs",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"cms",
|
|
8
|
+
"ghost",
|
|
9
|
+
"llm",
|
|
10
|
+
"mcp"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "Danilo Alonso <danilo@alonso.network>",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/damusix/ghost-mcp.git"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"ghost-mcp": "./bin/ghost-mcp.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"bin",
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/index.mjs",
|
|
27
|
+
"types": "./dist/index.d.mts",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@logosdx/fetch": "^8.0.0",
|
|
33
|
+
"@logosdx/utils": "^6.1.0",
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
35
|
+
"jsonwebtoken": "^9.0.2",
|
|
36
|
+
"zod": "^3.24.4"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@changesets/changelog-github": "^0.5.1",
|
|
40
|
+
"@changesets/cli": "^2.29.4",
|
|
41
|
+
"@types/jsonwebtoken": "^9.0.9",
|
|
42
|
+
"typescript": "^5.8.2",
|
|
43
|
+
"vite-plus": "^0.1.15-alpha.5",
|
|
44
|
+
"vitest": "^3.1.1"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "vp pack",
|
|
48
|
+
"test": "vp test",
|
|
49
|
+
"check": "vp check",
|
|
50
|
+
"lint": "vp lint",
|
|
51
|
+
"fmt": "vp fmt",
|
|
52
|
+
"dev": "vp dev"
|
|
53
|
+
}
|
|
54
|
+
}
|