UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

20 lines (18 loc) 390 B
export interface MCPInstallConfig { args?: string[]; command?: string; env?: Record<string, string>; headers?: Record<string, string>; type: 'stdio' | 'http'; url?: string; } export interface McpInstallSchema { author: string; config: MCPInstallConfig; description: string; homepage?: string; icon?: string; identifier: string; name: string; version: string; }