n8n-mcp 2.7.7 → 2.7.8
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/package.json +17 -71
- package/package.runtime.json +0 -19
package/package.json
CHANGED
|
@@ -1,52 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-mcp",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.8",
|
|
4
4
|
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
|
|
5
|
-
"
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
7
|
+
"better-sqlite3": "^11.10.0",
|
|
8
|
+
"sql.js": "^1.13.0",
|
|
9
|
+
"express": "^5.1.0",
|
|
10
|
+
"dotenv": "^16.5.0",
|
|
11
|
+
"axios": "^1.7.2",
|
|
12
|
+
"zod": "^3.23.8",
|
|
13
|
+
"uuid": "^10.0.0"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=16.0.0"
|
|
17
|
+
},
|
|
6
18
|
"bin": {
|
|
7
19
|
"n8n-mcp": "./dist/mcp/index.js"
|
|
8
20
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"rebuild": "node dist/scripts/rebuild.js",
|
|
12
|
-
"rebuild:optimized": "node dist/scripts/rebuild-optimized.js",
|
|
13
|
-
"validate": "node dist/scripts/validate.js",
|
|
14
|
-
"test-nodes": "node dist/scripts/test-nodes.js",
|
|
15
|
-
"start": "node dist/mcp/index.js",
|
|
16
|
-
"start:http": "MCP_MODE=http node dist/mcp/index.js",
|
|
17
|
-
"start:http:fixed": "MCP_MODE=http USE_FIXED_HTTP=true node dist/mcp/index.js",
|
|
18
|
-
"http": "npm run build && npm run start:http:fixed",
|
|
19
|
-
"dev": "npm run build && npm run rebuild && npm run validate",
|
|
20
|
-
"dev:http": "MCP_MODE=http nodemon --watch src --ext ts --exec 'npm run build && npm run start:http'",
|
|
21
|
-
"test:single-session": "./scripts/test-single-session.sh",
|
|
22
|
-
"test": "jest",
|
|
23
|
-
"lint": "tsc --noEmit",
|
|
24
|
-
"typecheck": "tsc --noEmit",
|
|
25
|
-
"update:n8n": "node scripts/update-n8n-deps.js",
|
|
26
|
-
"update:n8n:check": "node scripts/update-n8n-deps.js --dry-run",
|
|
27
|
-
"fetch:templates": "node dist/scripts/fetch-templates.js",
|
|
28
|
-
"fetch:templates:robust": "node dist/scripts/fetch-templates-robust.js",
|
|
29
|
-
"test:templates": "node dist/scripts/test-templates.js",
|
|
30
|
-
"test:workflow-validation": "node dist/scripts/test-workflow-validation.js",
|
|
31
|
-
"test:template-validation": "node dist/scripts/test-template-validation.js",
|
|
32
|
-
"test:essentials": "node dist/scripts/test-essentials.js",
|
|
33
|
-
"test:enhanced-validation": "node dist/scripts/test-enhanced-validation.js",
|
|
34
|
-
"test:ai-workflow-validation": "node dist/scripts/test-ai-workflow-validation.js",
|
|
35
|
-
"test:mcp-tools": "node dist/scripts/test-mcp-tools.js",
|
|
36
|
-
"test:n8n-manager": "node dist/scripts/test-n8n-manager-integration.js",
|
|
37
|
-
"test:n8n-validate-workflow": "node dist/scripts/test-n8n-validate-workflow.js",
|
|
38
|
-
"test:typeversion-validation": "node dist/scripts/test-typeversion-validation.js",
|
|
39
|
-
"test:workflow-diff": "node dist/scripts/test-workflow-diff.js",
|
|
40
|
-
"test:transactional-diff": "node dist/scripts/test-transactional-diff.js",
|
|
41
|
-
"test:tools-documentation": "node dist/scripts/test-tools-documentation.js",
|
|
42
|
-
"test:mcp:update-partial": "node dist/scripts/test-mcp-n8n-update-partial.js",
|
|
43
|
-
"test:update-partial:debug": "node dist/scripts/test-update-partial-debug.js",
|
|
44
|
-
"sanitize:templates": "node dist/scripts/sanitize-templates.js",
|
|
45
|
-
"db:rebuild": "node dist/scripts/rebuild-database.js",
|
|
46
|
-
"db:init": "node -e \"new (require('./dist/services/sqlite-storage-service').SQLiteStorageService)(); console.log('Database initialized')\"",
|
|
47
|
-
"docs:rebuild": "ts-node src/scripts/rebuild-database.ts",
|
|
48
|
-
"sync:runtime-version": "node scripts/sync-runtime-version.js"
|
|
49
|
-
},
|
|
50
21
|
"repository": {
|
|
51
22
|
"type": "git",
|
|
52
23
|
"url": "git+https://github.com/czlonkowski/n8n-mcp.git"
|
|
@@ -70,31 +41,6 @@
|
|
|
70
41
|
"data/nodes.db",
|
|
71
42
|
".env.example",
|
|
72
43
|
"README.md",
|
|
73
|
-
"LICENSE"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"@types/express": "^5.0.3",
|
|
78
|
-
"@types/jest": "^29.5.14",
|
|
79
|
-
"@types/node": "^22.15.30",
|
|
80
|
-
"@types/ws": "^8.18.1",
|
|
81
|
-
"jest": "^29.7.0",
|
|
82
|
-
"nodemon": "^3.1.10",
|
|
83
|
-
"ts-jest": "^29.3.4",
|
|
84
|
-
"ts-node": "^10.9.2",
|
|
85
|
-
"typescript": "^5.8.3"
|
|
86
|
-
},
|
|
87
|
-
"dependencies": {
|
|
88
|
-
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
89
|
-
"@n8n/n8n-nodes-langchain": "^1.99.0",
|
|
90
|
-
"axios": "^1.10.0",
|
|
91
|
-
"better-sqlite3": "^11.10.0",
|
|
92
|
-
"dotenv": "^16.5.0",
|
|
93
|
-
"express": "^5.1.0",
|
|
94
|
-
"n8n": "^1.100.1",
|
|
95
|
-
"n8n-core": "^1.99.0",
|
|
96
|
-
"n8n-workflow": "^1.97.0",
|
|
97
|
-
"sql.js": "^1.13.0",
|
|
98
|
-
"uuid": "^10.0.0"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
44
|
+
"LICENSE"
|
|
45
|
+
]
|
|
46
|
+
}
|
package/package.runtime.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "n8n-mcp-runtime",
|
|
3
|
-
"version": "2.7.0",
|
|
4
|
-
"description": "n8n MCP Server Runtime Dependencies Only",
|
|
5
|
-
"private": true,
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
8
|
-
"better-sqlite3": "^11.10.0",
|
|
9
|
-
"sql.js": "^1.13.0",
|
|
10
|
-
"express": "^5.1.0",
|
|
11
|
-
"dotenv": "^16.5.0",
|
|
12
|
-
"axios": "^1.7.2",
|
|
13
|
-
"zod": "^3.23.8",
|
|
14
|
-
"uuid": "^10.0.0"
|
|
15
|
-
},
|
|
16
|
-
"engines": {
|
|
17
|
-
"node": ">=16.0.0"
|
|
18
|
-
}
|
|
19
|
-
}
|