Files
ragflow/web/src/interfaces/database/mcp.ts
balibabu f7af0fc71e Feat: List MCP servers #3221 (#8730)
### What problem does this PR solve?

Feat: List MCP servers #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-07-09 09:32:38 +08:00

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;
}