package.json•2.37 kB
{
"name": "@grec0/mcp-n8n-webhook",
"version": "0.1.1",
"description": "MCP server para enviar información a webhook de n8n",
"license": "MIT",
"author": "@grec0",
"homepage": "https://github.com/gcorroto/mcp-n8n-webhook",
"bugs": "https://github.com/gcorroto/mcp-n8n-webhook/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/gcorroto/mcp-n8n-webhook.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"n8n",
"webhook",
"data-storage",
"embeddings"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-n8n-webhook": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"inspector": "SERVER_PORT=3009 CLIENT_PORT=5175 npx -y @modelcontextprotocol/inspector node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testMatch='**/tests/**/*.test.ts'",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"prerelease": "npm run build && npm test",
"release:patch": "npm run version:patch && npm run prerelease && npm publish",
"release:minor": "npm run version:minor && npm run prerelease && npm publish",
"release:major": "npm run version:major && npm run prerelease && npm publish",
"postpublish": "git add package.json && git commit -m \"chore: bump version to v$(node -p \"require('./package.json').version\")\" && git push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"@types/express": "^5.0.2",
"@types/node": "^22",
"@types/node-fetch": "^2.6.12",
"axios": "^1.9.0",
"node-fetch": "^3.3.2",
"universal-user-agent": "^7.0.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.6",
"typescript": "^5.6.2"
}
}