You should be able to use the function "parse" from the parsec package like so:
> parse parseExp "name of source for error reporting" "(some lisp expression")
The function "parse" returns a value of type (Either ParseError a),
where in this case the type-var 'a' wil be a LispVal.
Does that help?