export interface MCPResponse {
    jsonrpc: string;
    id: number;
    result?: {
        content: Array<{
            type: string;
            text: string;
        }>;
    };
    error?: {
        code: number;
        message: string;
    };
}
export declare function makeMCPRequest(user: {
    user_id: string;
}, apiKey: string, toolName: string, arguments_: any, clientName?: string): Promise<MCPResponse>;
