If your MP3 file is in a location accessible to users (i.e. on a website folder somewhere) you could simply redirect to the mp3 file. Use the Redirect() method on the controller to accomplish this:
public ActionResult Stream()
{
return Redirect("test.mp3");
}