Files
ragflow/web/src/interfaces/database/mcp.ts

16 lines
292 B
TypeScript
Raw Normal View History

export interface IMcpServer {
create_date: string;
description: null;
id: string;
name: string;
server_type: string;
update_date: string;
url: string;
variables: Record<string, any>;
}
export interface IMcpServerListResponse {
mcp_servers: IMcpServer[];
total: number;
}