/** * Resolve the MCP endpoint URL. * Priority: explicit config > LOBU_MEMORY_URL env > saved memory server > default cloud server. */ export declare function resolveMcpEndpoint(config?: { mcpUrl?: unknown; url?: unknown; apiUrl?: unknown; }): Promise; export declare function mcpRpc(mcpUrl: string, method: string, params?: Record, contextName?: string): Promise; /** * Call a Lobu memory tool over the REST proxy at `POST /api/{orgSlug}/{toolName}`. */ export declare function restToolCall(mcpUrl: string, toolName: string, args: Record, contextName?: string): Promise; //# sourceMappingURL=mcp.d.ts.map