The Mikrotik default config is essentially not to accept RAs, you have to explicitly enable them with:
/ipv6 settings set accept-router-advertisements=yes
If you do that make sure to configure the firewall to discard RAs from unwanted interfaces and/or nodes.
I am not sure that is entirely true.
In the terminal, the ipv6 after a default config reset looks like this:
/ipv6 settings
set disable-ipv6=yes max-neighbor-entries=8192
I have never configured any of my firewalls for IPv6, and yet in winbox, both settings are set to "yes if forwarding disabled". My read on this is that the default config disabled ipv6, however, the settings in winbox mean that if I enabled ipv6, I would have to set both of those options explicitly to no:
/ipv6 settings
set accept-redirects=no accept-router-advertisements=no max-neighbor-entries=\
8192
Perhaps this would be safer and more clearly understood:
/ipv6 settings
set accept-redirects=no accept-router-advertisements=no disable-ipv6=yes \
max-neighbor-entries=8192