mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-18 13:47:21 +08:00
16 lines
292 B
TypeScript
16 lines
292 B
TypeScript
|
|
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;
|
||
|
|
}
|