n8n-mcp 2.10.3 → 2.10.5

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/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
4
  [![GitHub stars](https://img.shields.io/github/stars/czlonkowski/n8n-mcp?style=social)](https://github.com/czlonkowski/n8n-mcp)
5
- [![Version](https://img.shields.io/badge/version-2.10.3-blue.svg)](https://github.com/czlonkowski/n8n-mcp)
5
+ [![Version](https://img.shields.io/badge/version-2.10.5-blue.svg)](https://github.com/czlonkowski/n8n-mcp)
6
6
  [![npm version](https://img.shields.io/npm/v/n8n-mcp.svg)](https://www.npmjs.com/package/n8n-mcp)
7
7
  [![codecov](https://codecov.io/gh/czlonkowski/n8n-mcp/graph/badge.svg?token=YOUR_TOKEN)](https://codecov.io/gh/czlonkowski/n8n-mcp)
8
- [![Tests](https://img.shields.io/badge/tests-1356%20passing-brightgreen.svg)](https://github.com/czlonkowski/n8n-mcp/actions)
9
- [![n8n version](https://img.shields.io/badge/n8n-^1.104.1-orange.svg)](https://github.com/n8n-io/n8n)
8
+ [![Tests](https://img.shields.io/badge/tests-1728%20passing-brightgreen.svg)](https://github.com/czlonkowski/n8n-mcp/actions)
9
+ [![n8n version](https://img.shields.io/badge/n8n-^1.107.4-orange.svg)](https://github.com/n8n-io/n8n)
10
10
  [![Docker](https://img.shields.io/badge/docker-ghcr.io%2Fczlonkowski%2Fn8n--mcp-green.svg)](https://github.com/czlonkowski/n8n-mcp/pkgs/container/n8n-mcp)
11
11
  [![Deploy on Railway](https://railway.com/button.svg)](https://railway.com/deploy/n8n-mcp?referralCode=n8n-mcp)
12
12
 
@@ -16,7 +16,7 @@ A Model Context Protocol (MCP) server that provides AI assistants with comprehen
16
16
 
17
17
  n8n-MCP serves as a bridge between n8n's workflow automation platform and AI models, enabling them to understand and work with n8n nodes effectively. It provides structured access to:
18
18
 
19
- - 📚 **532 n8n nodes** from both n8n-nodes-base and @n8n/n8n-nodes-langchain
19
+ - 📚 **535 n8n nodes** from both n8n-nodes-base and @n8n/n8n-nodes-langchain
20
20
  - 🔧 **Node properties** - 99% coverage with detailed schemas
21
21
  - ⚡ **Node operations** - 63.6% coverage of available actions
22
22
  - 📄 **Documentation** - 90% coverage from official n8n docs (including AI nodes)
@@ -663,10 +663,10 @@ npm run dev:http # HTTP dev mode
663
663
 
664
664
  ## 📊 Metrics & Coverage
665
665
 
666
- Current database coverage (n8n v1.103.2):
666
+ Current database coverage (n8n v1.106.3):
667
667
 
668
- - ✅ **532/532** nodes loaded (100%)
669
- - ✅ **525** nodes with properties (98.7%)
668
+ - ✅ **535/535** nodes loaded (100%)
669
+ - ✅ **528** nodes with properties (98.7%)
670
670
  - ✅ **470** nodes with documentation (88%)
671
671
  - ✅ **267** AI-capable tools detected
672
672
  - ✅ **AI Agent & LangChain nodes** fully documented
package/data/nodes.db CHANGED
Binary file
package/package.json CHANGED
@@ -1,86 +1,24 @@
1
1
  {
2
2
  "name": "n8n-mcp",
3
- "version": "2.10.3",
3
+ "version": "2.10.5",
4
4
  "description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
5
- "main": "dist/index.js",
5
+ "dependencies": {
6
+ "@modelcontextprotocol/sdk": "^1.13.2",
7
+ "express": "^5.1.0",
8
+ "dotenv": "^16.5.0",
9
+ "sql.js": "^1.13.0",
10
+ "uuid": "^10.0.0",
11
+ "axios": "^1.7.7"
12
+ },
13
+ "engines": {
14
+ "node": ">=16.0.0"
15
+ },
16
+ "optionalDependencies": {
17
+ "better-sqlite3": "^11.10.0"
18
+ },
6
19
  "bin": {
7
20
  "n8n-mcp": "./dist/mcp/index.js"
8
21
  },
9
- "scripts": {
10
- "build": "tsc -p tsconfig.build.json",
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
- "start:n8n": "N8N_MODE=true MCP_MODE=http node dist/mcp/index.js",
19
- "http": "npm run build && npm run start:http:fixed",
20
- "dev": "npm run build && npm run rebuild && npm run validate",
21
- "dev:http": "MCP_MODE=http nodemon --watch src --ext ts --exec 'npm run build && npm run start:http'",
22
- "test:single-session": "./scripts/test-single-session.sh",
23
- "test:mcp-endpoint": "node scripts/test-mcp-endpoint.js",
24
- "test:mcp-endpoint:curl": "./scripts/test-mcp-endpoint.sh",
25
- "test:mcp-stdio": "npm run build && node scripts/test-mcp-stdio.js",
26
- "test": "vitest",
27
- "test:ui": "vitest --ui",
28
- "test:run": "vitest run",
29
- "test:coverage": "vitest run --coverage",
30
- "test:ci": "vitest run --coverage --coverage.thresholds.lines=0 --coverage.thresholds.functions=0 --coverage.thresholds.branches=0 --coverage.thresholds.statements=0 --reporter=default --reporter=junit",
31
- "test:watch": "vitest watch",
32
- "test:unit": "vitest run tests/unit",
33
- "test:integration": "vitest run --config vitest.config.integration.ts",
34
- "test:e2e": "vitest run tests/e2e",
35
- "lint": "tsc --noEmit",
36
- "typecheck": "tsc --noEmit",
37
- "update:n8n": "node scripts/update-n8n-deps.js",
38
- "update:n8n:check": "node scripts/update-n8n-deps.js --dry-run",
39
- "fetch:templates": "node dist/scripts/fetch-templates.js",
40
- "fetch:templates:robust": "node dist/scripts/fetch-templates-robust.js",
41
- "prebuild:fts5": "npx tsx scripts/prebuild-fts5.ts",
42
- "test:templates": "node dist/scripts/test-templates.js",
43
- "test:protocol-negotiation": "npx tsx src/scripts/test-protocol-negotiation.ts",
44
- "test:workflow-validation": "node dist/scripts/test-workflow-validation.js",
45
- "test:template-validation": "node dist/scripts/test-template-validation.js",
46
- "test:essentials": "node dist/scripts/test-essentials.js",
47
- "test:enhanced-validation": "node dist/scripts/test-enhanced-validation.js",
48
- "test:ai-workflow-validation": "node dist/scripts/test-ai-workflow-validation.js",
49
- "test:mcp-tools": "node dist/scripts/test-mcp-tools.js",
50
- "test:n8n-manager": "node dist/scripts/test-n8n-manager-integration.js",
51
- "test:n8n-validate-workflow": "node dist/scripts/test-n8n-validate-workflow.js",
52
- "test:typeversion-validation": "node dist/scripts/test-typeversion-validation.js",
53
- "test:error-handling": "node dist/scripts/test-error-handling-validation.js",
54
- "test:workflow-diff": "node dist/scripts/test-workflow-diff.js",
55
- "test:transactional-diff": "node dist/scripts/test-transactional-diff.js",
56
- "test:tools-documentation": "node dist/scripts/test-tools-documentation.js",
57
- "test:url-configuration": "npm run build && ts-node scripts/test-url-configuration.ts",
58
- "test:search-improvements": "node dist/scripts/test-search-improvements.js",
59
- "test:fts5-search": "node dist/scripts/test-fts5-search.js",
60
- "migrate:fts5": "node dist/scripts/migrate-nodes-fts.js",
61
- "test:mcp:update-partial": "node dist/scripts/test-mcp-n8n-update-partial.js",
62
- "test:update-partial:debug": "node dist/scripts/test-update-partial-debug.js",
63
- "test:issue-45-fix": "node dist/scripts/test-issue-45-fix.js",
64
- "test:auth-logging": "tsx scripts/test-auth-logging.ts",
65
- "test:docker": "./scripts/test-docker-config.sh all",
66
- "test:docker:unit": "./scripts/test-docker-config.sh unit",
67
- "test:docker:integration": "./scripts/test-docker-config.sh integration",
68
- "test:docker:security": "./scripts/test-docker-config.sh security",
69
- "sanitize:templates": "node dist/scripts/sanitize-templates.js",
70
- "db:rebuild": "node dist/scripts/rebuild-database.js",
71
- "benchmark": "vitest bench --config vitest.config.benchmark.ts",
72
- "benchmark:watch": "vitest bench --watch --config vitest.config.benchmark.ts",
73
- "benchmark:ui": "vitest bench --ui --config vitest.config.benchmark.ts",
74
- "benchmark:ci": "CI=true node scripts/run-benchmarks-ci.js",
75
- "db:init": "node -e \"new (require('./dist/services/sqlite-storage-service').SQLiteStorageService)(); console.log('Database initialized')\"",
76
- "docs:rebuild": "ts-node src/scripts/rebuild-database.ts",
77
- "sync:runtime-version": "node scripts/sync-runtime-version.js",
78
- "update:readme-version": "node scripts/update-readme-version.js",
79
- "prepare:publish": "./scripts/publish-npm.sh",
80
- "update:all": "./scripts/update-and-publish-prep.sh",
81
- "test:release-automation": "node scripts/test-release-automation.js",
82
- "prepare:release": "node scripts/prepare-release.js"
83
- },
84
22
  "repository": {
85
23
  "type": "git",
86
24
  "url": "git+https://github.com/czlonkowski/n8n-mcp.git"
@@ -104,40 +42,6 @@
104
42
  "data/nodes.db",
105
43
  ".env.example",
106
44
  "README.md",
107
- "LICENSE",
108
- "package.runtime.json"
109
- ],
110
- "devDependencies": {
111
- "@faker-js/faker": "^9.9.0",
112
- "@testing-library/jest-dom": "^6.6.4",
113
- "@types/better-sqlite3": "^7.6.13",
114
- "@types/express": "^5.0.3",
115
- "@types/node": "^22.15.30",
116
- "@types/ws": "^8.18.1",
117
- "@vitest/coverage-v8": "^3.2.4",
118
- "@vitest/runner": "^3.2.4",
119
- "@vitest/ui": "^3.2.4",
120
- "axios": "^1.11.0",
121
- "axios-mock-adapter": "^2.1.0",
122
- "fishery": "^2.3.1",
123
- "msw": "^2.10.4",
124
- "nodemon": "^3.1.10",
125
- "ts-node": "^10.9.2",
126
- "typescript": "^5.8.3",
127
- "vitest": "^3.2.4"
128
- },
129
- "dependencies": {
130
- "@modelcontextprotocol/sdk": "^1.13.2",
131
- "@n8n/n8n-nodes-langchain": "^1.104.1",
132
- "dotenv": "^16.5.0",
133
- "express": "^5.1.0",
134
- "n8n": "^1.105.2",
135
- "n8n-core": "^1.104.1",
136
- "n8n-workflow": "^1.102.1",
137
- "sql.js": "^1.13.0",
138
- "uuid": "^10.0.0"
139
- },
140
- "optionalDependencies": {
141
- "better-sqlite3": "^11.10.0"
142
- }
143
- }
45
+ "LICENSE"
46
+ ]
47
+ }
@@ -1,20 +0,0 @@
1
- {
2
- "name": "n8n-mcp-runtime",
3
- "version": "2.10.1",
4
- "description": "n8n MCP Server Runtime Dependencies Only",
5
- "private": true,
6
- "dependencies": {
7
- "@modelcontextprotocol/sdk": "^1.13.2",
8
- "express": "^5.1.0",
9
- "dotenv": "^16.5.0",
10
- "sql.js": "^1.13.0",
11
- "uuid": "^10.0.0",
12
- "axios": "^1.7.7"
13
- },
14
- "engines": {
15
- "node": ">=16.0.0"
16
- },
17
- "optionalDependencies": {
18
- "better-sqlite3": "^11.10.0"
19
- }
20
- }