TeamCity watches the command line output from the build.  You can let it know how your tests are going by inserting certain markers into that output See <http://www.jetbrains.net/confluence/display/TCD3/Build+Script+Interaction+with+TeamCity>.  For example 

    ##teamcity[testSuiteStarted name='Test1']

will let TeamCity know that a set of tests started.  With MbUnit you can't output these markers while the tests are running, but you can transform the XML file that it outputs.  Here is the XSL that I am using:

    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    	<xsl:output method="text"/>
    	<xsl:template match="/">
    
            <xsl:apply-templates/>
    
        </xsl:template>
        
    	<xsl:template match="assemblies/assembly">
    ##teamcity[testSuiteStarted name='<xsl:value-of select="@name" />']
    
            <xsl:apply-templates select="//run" />
    
    ##teamcity[testSuiteFinished name='<xsl:value-of select="@name" />']
        </xsl:template>
    	
    	<xsl:template match="run">
    
            <xsl:choose>
                <xsl:when test="@result='ignore' or @result='skip'">
            ##teamcity[testIgnored name='<xsl:value-of select="@name" />' message='Test Ignored']
                </xsl:when>
                <xsl:otherwise>
            ##teamcity[testStarted name='<xsl:value-of select="@name" />']
                </xsl:otherwise>
            </xsl:choose>
    
    
            <xsl:if test="@result='failure'">
                ##teamcity[testFailed name='<xsl:value-of select="@name" />' message='<xsl:value-of select="child::node()/message"/>' details='<xsl:value-of select="normalize-space(child::node()/stack-trace)"/>']
            </xsl:if>
    
    
            <xsl:if test="@result!='ignore' and @result!='skip'">
            ##teamcity[testFinished name='<xsl:value-of select="@name" />']
            </xsl:if>
    
        </xsl:template>
        
    </xsl:stylesheet>