As @Kaarel noted, the degenerate form of a binary tree that you get when the nodes are inserted in sequence is a linked list:

Prolog's list notation is simply syntactic sugar for a normal prolog term: ./2, where the 1st argument is the head of the list and the 2nd the tail of the list. The sigil for the empty list is the atom '[]'. So, the internal representation of a list like [1,2,3] is the structure/term
.( 1 , .( 2 , .( 3 , '[]' )
A one element list, [1] as
.( 1 , '[]' )
And the empty list as the atom '[]'.
You can see the attraction of the syntactic sugar.
See http://cs.union.edu/~striegnk/learn-prolog-now/html/node78.html for more details.
Given that identity, something like this will give you what your original post says you want:
list2tree( [X,Y] , tree(X,Y) )
.
list2tree( [X|Xs] , tree( X , Ts ) :-
list2tree( Xs , Ts )
.
Though all you're doing is changing the functor. However, your structure doesn't seem to allow for the empty list/tree. How do you intend to represent that?