@catchmexz/fedin-cms-mcp 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/build/index.js +1464 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@catchmexz/fedin-cms-mcp",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "An MCP server for your Fedin CMS that provides access to content types and entries through the MCP protocol",
|
|
8
|
+
"private": false,
|
|
9
|
+
"keywords": [
|
|
10
|
+
"fedin",
|
|
11
|
+
"cms",
|
|
12
|
+
"content-management",
|
|
13
|
+
"mcp",
|
|
14
|
+
"headless-cms"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"bin": {
|
|
19
|
+
"fedin-cms-mcp": "build/index.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"build"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc --skipLibCheck && chmod +x build/index.js",
|
|
26
|
+
"prepare": "npm run build",
|
|
27
|
+
"watch": "tsc --watch",
|
|
28
|
+
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
|
|
29
|
+
"generate-test-image": "node scripts/generate-test-image.js",
|
|
30
|
+
"context-window-info": "node scripts/context-window-example.js"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@modelcontextprotocol/sdk": "1.10.2",
|
|
34
|
+
"axios": "^1.6.7",
|
|
35
|
+
"dotenv": "^16.4.5",
|
|
36
|
+
"form-data": "^4.0.2"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/form-data": "^2.2.1",
|
|
40
|
+
"@types/node": "^20.11.24",
|
|
41
|
+
"canvas": "^3.1.0",
|
|
42
|
+
"dotenv-cli": "^8.0.0",
|
|
43
|
+
"typescript": "^5.3.3"
|
|
44
|
+
}
|
|
45
|
+
}
|