@toolplex/client
Version:
The official ToolPlex client for AI agent tool discovery and execution
13 lines (12 loc) • 379 B
TypeScript
export declare class StdioServerManagerClient {
private serverProcess;
private messageHandlers;
private messageBuffer;
private command;
private args;
private env;
constructor(command: string, args: string[], env?: NodeJS.ProcessEnv);
start(): Promise<void>;
sendRequest(method: string, params: any): Promise<any>;
stop(): Promise<void>;
}