mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-03-01 08:03:08 +00:00
- Updated n8n from 2.6.3 to 2.8.3 - Updated n8n-core from 2.6.1 to 2.8.1 - Updated n8n-workflow from 2.6.0 to 2.8.0 - Updated @n8n/n8n-nodes-langchain from 2.6.2 to 2.8.1 - Fixed node loader to bypass restricted package.json exports in @n8n/n8n-nodes-langchain >=2.9.0 (resolves via absolute paths) - Fixed community doc generator for cloud LLMs: added API key env var support, switched to max_completion_tokens, auto-omit temperature - Rebuilt node database with 1,236 nodes (673 n8n-nodes-base, 133 @n8n/n8n-nodes-langchain, 430 community) - Refreshed community nodes (361 verified + 69 npm) with 424 AI summaries - Updated README badge with new n8n version and node counts - Updated CHANGELOG with dependency changes Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
87 lines
3.9 KiB
JavaScript
87 lines
3.9 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.N8nNodeLoader = void 0;
|
|
const path_1 = __importDefault(require("path"));
|
|
class N8nNodeLoader {
|
|
constructor() {
|
|
this.CORE_PACKAGES = [
|
|
{ name: 'n8n-nodes-base', path: 'n8n-nodes-base' },
|
|
{ name: '@n8n/n8n-nodes-langchain', path: '@n8n/n8n-nodes-langchain' }
|
|
];
|
|
}
|
|
async loadAllNodes() {
|
|
const results = [];
|
|
for (const pkg of this.CORE_PACKAGES) {
|
|
try {
|
|
console.log(`\n📦 Loading package: ${pkg.name} from ${pkg.path}`);
|
|
const packageJson = require(`${pkg.path}/package.json`);
|
|
console.log(` Found ${Object.keys(packageJson.n8n?.nodes || {}).length} nodes in package.json`);
|
|
const nodes = await this.loadPackageNodes(pkg.name, pkg.path, packageJson);
|
|
results.push(...nodes);
|
|
}
|
|
catch (error) {
|
|
console.error(`Failed to load ${pkg.name}:`, error);
|
|
}
|
|
}
|
|
return results;
|
|
}
|
|
resolvePackageDir(packagePath) {
|
|
const pkgJsonPath = require.resolve(`${packagePath}/package.json`);
|
|
return path_1.default.dirname(pkgJsonPath);
|
|
}
|
|
loadNodeModule(absolutePath) {
|
|
return require(absolutePath);
|
|
}
|
|
async loadPackageNodes(packageName, packagePath, packageJson) {
|
|
const n8nConfig = packageJson.n8n || {};
|
|
const nodes = [];
|
|
const packageDir = this.resolvePackageDir(packagePath);
|
|
const nodesList = n8nConfig.nodes || [];
|
|
if (Array.isArray(nodesList)) {
|
|
for (const nodePath of nodesList) {
|
|
try {
|
|
const fullPath = path_1.default.join(packageDir, nodePath);
|
|
const nodeModule = this.loadNodeModule(fullPath);
|
|
const nodeNameMatch = nodePath.match(/\/([^\/]+)\.node\.(js|ts)$/);
|
|
const nodeName = nodeNameMatch ? nodeNameMatch[1] : path_1.default.basename(nodePath, '.node.js');
|
|
const NodeClass = nodeModule.default || nodeModule[nodeName] || Object.values(nodeModule)[0];
|
|
if (NodeClass) {
|
|
nodes.push({ packageName, nodeName, NodeClass });
|
|
console.log(` ✓ Loaded ${nodeName} from ${packageName}`);
|
|
}
|
|
else {
|
|
console.warn(` ⚠ No valid export found for ${nodeName} in ${packageName}`);
|
|
}
|
|
}
|
|
catch (error) {
|
|
console.error(` ✗ Failed to load node from ${packageName}/${nodePath}:`, error.message);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
for (const [nodeName, nodePath] of Object.entries(nodesList)) {
|
|
try {
|
|
const fullPath = path_1.default.join(packageDir, nodePath);
|
|
const nodeModule = this.loadNodeModule(fullPath);
|
|
const NodeClass = nodeModule.default || nodeModule[nodeName] || Object.values(nodeModule)[0];
|
|
if (NodeClass) {
|
|
nodes.push({ packageName, nodeName, NodeClass });
|
|
console.log(` ✓ Loaded ${nodeName} from ${packageName}`);
|
|
}
|
|
else {
|
|
console.warn(` ⚠ No valid export found for ${nodeName} in ${packageName}`);
|
|
}
|
|
}
|
|
catch (error) {
|
|
console.error(` ✗ Failed to load node ${nodeName} from ${packageName}:`, error.message);
|
|
}
|
|
}
|
|
}
|
|
return nodes;
|
|
}
|
|
}
|
|
exports.N8nNodeLoader = N8nNodeLoader;
|
|
//# sourceMappingURL=node-loader.js.map
|