UNPKG

@scalogicai/n8n-nodes-mcp-enhanced

Version:

Enhanced MCP client with multi-tenant support and smart prompt handling. Fixed queue mode compatibility and node loading issues. Built on excellent foundation by Jd Fiscus (@nerding-io).

16 lines 624 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const McpClientEnhanced_node_1 = require("../nodes/McpClient/McpClientEnhanced.node"); describe('McpClientEnhanced Node', () => { let mcpClient; beforeEach(() => { mcpClient = new McpClientEnhanced_node_1.McpClientEnhanced(); }); it('should have the correct node type', () => { expect(mcpClient.description.name).toBe('mcpClientEnhanced'); }); it('should have properties defined', () => { expect(mcpClient.description.properties).toBeDefined(); }); }); //# sourceMappingURL=McpClient.test.js.map