Edit: I missed that the title of your question asked for Either[Seq[A],Seq[B]], but I did read "I'd like to obtain the first error message or a concatenation of all error messages", and this would give you the former:
def reduce[A, B](s: Seq[Either[A, B]]): Either[A, Seq[B]] =
s.foldLeft(Right(Nil): Either[A, List[B]]) {
(acc, e) => for (xs <- acc.right; x <- e.right) yield x :: xs
}.right.map(_.reverse)
The .right.map(_.reverse) is only necessary if you care about the order of the list on the right of the result.
scala> reduce(List(Right(1), Right(2), Right(3)))
res2: Either[Nothing,Seq[Int]] = Right(List(1, 2, 3))
scala> reduce(List(Right(1), Left("error"), Right(3)))
res3: Either[java.lang.String,Seq[Int]] = Left(error)
Here's an example using Scalaz:
type EitherString[A] = Either[String, A]
val xs: Seq[Either[String, Int]] = List(Right(1), Right(2), Right(3))
scala> xs.sequence[EitherString, Int]
res0: EitherString[Seq[Int]] = Right(List(1, 2, 3))
The type alias is so that you can pass a unary type constructor as the first type parameter to sequence.
Here's an attempt at a succinct, [A, B] parameterised version of this:
def sequence[A, B](xs: Seq[Either[A, B]]) = {
type EitherA[B] = Either[A, B]
xs.sequence[EitherA, B]
}