mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-06 07:34:04 +08:00
### What problem does this PR solve? Feat: Test MCP server #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
export interface ITestMcpRequestBody {
|
|
server_type: string;
|
|
url: string;
|
|
headers?: Record<string, any>;
|
|
variables?: Record<string, any>;
|
|
timeout?: number;
|
|
}
|