thunderclient-mcp
Version:
Thunder Client MCP Server
29 lines • 781 B
TypeScript
export declare class ThunderClient {
private validateProjectDir;
private execCommand;
runHelp(projectDir: string): Promise<{
success: boolean;
error?: string;
projectDir?: string;
version: string;
}>;
runDebug(projectDir: string): Promise<{
success: boolean;
error?: string;
projectDir?: string;
version: string;
}>;
runCurl({ curlInput, name, collection, folder, projectDir, }: {
curlInput: string;
name?: string;
collection?: string;
folder?: string;
projectDir: string;
}): Promise<{
success: boolean;
error?: string;
projectDir?: string;
version: string;
}>;
}
//# sourceMappingURL=thunder-client.d.ts.map