2025-10-20 10:34:38 +08:00
|
|
|
// import { IExportedMcpServer } from '@/interfaces/database/mcp';
|
2025-10-10 15:09:04 +08:00
|
|
|
|
|
|
|
|
export interface ITestMcpRequestBody {
|
|
|
|
|
server_type: string;
|
|
|
|
|
url: string;
|
|
|
|
|
headers?: Record<string, any>;
|
|
|
|
|
variables?: Record<string, any>;
|
|
|
|
|
timeout?: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IImportMcpServersRequestBody {
|
2025-10-20 10:34:38 +08:00
|
|
|
// mcpServers: Record<
|
|
|
|
|
// string,
|
|
|
|
|
// Pick<IExportedMcpServer, 'type' | 'url' | 'authorization_token'>
|
|
|
|
|
// >;
|
2025-10-10 15:09:04 +08:00
|
|
|
}
|