mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-18 21:57:27 +08:00
### What problem does this PR solve? Feat: List MCP servers #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
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;
|
|
}
|