feat: 重构MCP功能和AI服务提供者架构

This commit is contained in:
xiamuceer-j
2026-01-09 17:13:19 +08:00
parent f3c224261d
commit 77c5489ff8
49 changed files with 4763 additions and 4307 deletions
+2 -2
View File
@@ -667,7 +667,7 @@ export interface MCPPlugin {
plugin_name: string;
display_name: string;
description?: string;
plugin_type: 'http' | 'stdio';
plugin_type: 'http' | 'stdio' | 'streamable_http' | 'sse';
category: string;
// HTTP类型字段
@@ -693,7 +693,7 @@ export interface MCPPluginCreate {
plugin_name: string;
display_name?: string;
description?: string;
server_type: 'http' | 'stdio';
server_type: 'http' | 'stdio' | 'streamable_http' | 'sse';
server_url?: string;
command?: string;
args?: string[];