feat: perf mcp server api datastruct

This commit is contained in:
Junyan Qin
2025-11-04 16:45:55 +08:00
parent 8df90558ab
commit 0666778fea
2 changed files with 14 additions and 17 deletions

View File

@@ -329,6 +329,7 @@ export interface MCPServerRuntimeInfo {
connected: boolean;
error_message: string;
tool_count: number;
tools: MCPTool[];
}
export interface MCPServer {
@@ -345,5 +346,5 @@ export interface MCPServer {
export interface MCPTool {
name: string;
description: string;
parameters: object;
parameters?: object;
}