Feat: Test MCP server #3221 (#8757)

### What problem does this PR solve?

Feat: Test MCP server #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-07-10 09:33:29 +08:00
committed by GitHub
parent cf0a1366af
commit aae9fbb9de
7 changed files with 158 additions and 20 deletions

View File

@@ -0,0 +1,7 @@
export interface ITestMcpRequestBody {
server_type: string;
url: string;
headers?: Record<string, any>;
variables?: Record<string, any>;
timeout?: number;
}