Você pode usar $arrayElemAt ou $first (v4.4) operadores para selecionar o primeiro elemento de uma matriz,
db.players.update(
{ username: "moshe" },
[{
"$set": {
"health": {
"$arrayElemAt": ["$Chapters.Cat A", 0]
}
}
}]
)
Playground