Although there is no single command for this, you can add two commands on the command line or use a batch file / shell script.
If you have access to GNU utilities, you can add Tim's answer with hg st :
> hg st; hg summary --remote
which gives you something like this:

If you have a Windows CMD, you can use this to get very similar results:
> hg st & hg summary --remote
source share