package.json•995 B
{
"name": "formio-mcp-server",
"version": "1.0.0",
"description": "MCP server for interacting with Form.io API to create and edit forms using natural language",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node --env-file=.env dist/index.js --http",
"start:http": "node --env-file=.env dist/index.js --http",
"start:stdio": "node --env-file=.env dist/index.js",
"prepare": "npm run build"
},
"keywords": ["mcp", "formio", "forms", "typescript"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"zod": "^3.24.1",
"express": "^4.19.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.2.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}