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

20 lines
381 B
TypeScript
Raw Normal View History

export enum McpServerType {
Sse = 'sse',
StreamableHttp = 'streamable-http',
}
export interface IMcpServerVariable {
key: string;
name: string;
}
export interface IMcpServerInfo {
id: string;
name: string;
url: string;
server_type: McpServerType;
description?: string;
variables?: IMcpServerVariable[];
headers: Map<string, string>;
}