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).

44 lines 1.74 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.McpClientSseApiEnhanced = void 0; class McpClientSseApiEnhanced { constructor() { this.name = 'mcpClientSseApiEnhanced'; this.displayName = 'MCP Client Enhanced (SSE) API'; this.icon = 'file:mcpClient.svg'; this.properties = [ { displayName: 'SSE URL', name: 'sseUrl', type: 'string', default: 'http://localhost:3001/sse', required: true, description: 'URL of the SSE endpoint for the MCP server', }, { displayName: 'SSE Connection Timeout', name: 'sseTimeout', type: 'number', default: 60000, required: false, description: 'Timeout for the SSE connection in milliseconds. Default is 60 seconds.', }, { displayName: 'Messages Post Endpoint', name: 'messagesPostEndpoint', type: 'string', default: '', description: 'Optional custom endpoint for posting messages (if different from SSE URL)', }, { displayName: 'Additional Headers', name: 'headers', type: 'string', default: '', description: 'Additional headers to send in the request in NAME=VALUE format, separated by commas (e.g., BRAVE_API_KEY=xyz,OPENAI_API_KEY=abc)', }, ]; } } exports.McpClientSseApiEnhanced = McpClientSseApiEnhanced; //# sourceMappingURL=McpClientSseApiEnhanced.credentials.js.map