package.json•1.4 kB
{
"name": "@bschauer/strapi-mcp-server",
"version": "2.7.1",
"description": "Model Context Protocol server implementation for Strapi CMS with enhanced security disclaimer and configuration",
"type": "module",
"bin": {
"@bschauer/strapi-mcp-server": "./build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"build:watch": "tsc --watch",
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"strapi",
"mcp",
"model-context-protocol",
"cms"
],
"author": "bschauer",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"@types/node-fetch": "^2.6.12",
"@types/qs": "^6.14.0",
"@types/sharp": "^0.31.1",
"form-data": "^4.0.3",
"node-fetch": "^3.3.2",
"qs": "^6.14.0",
"sharp": "^0.34.2",
"zod": "^3.25.71"
}
}