UNPKG

@it-era/n8n-nodes-mcp

Version:
36 lines 1.31 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.McpClientSseApi = void 0; class McpClientSseApi { constructor() { this.name = 'mcpClientSseApi'; this.displayName = 'MCP Client (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: '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 (format: name:value, one per line)', }, ]; } } exports.McpClientSseApi = McpClientSseApi; //# sourceMappingURL=McpClientSseApi.credentials.js.map