package.json•936 B
{
"name": "mcp-n8n-builder",
"version": "0.0.4",
"description": "MCP server for building n8n workflows",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-n8n-builder": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "npx @modelcontextprotocol/inspector dist/index.js",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"mcp",
"model-context-protocol",
"n8n",
"workflow"
],
"author": "Scott Spence",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/node": "^22.15.18",
"typescript": "^5.8.3",
"zod": "^4.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1"
}
}