You should be able to create a new Index Template, and include in it just the Movable Type tags to display the information you want about the entries, with no styling.
For example, if you want to just have a list of the last 10 entry titles, linked to their archive pages, you could use the following:
CODE
<ul>
<MTEntries lastn="10">
<li><MTEntryDate format="%x">: <a href="<MTEntryPermalink>"><MTEntryTitle></a></li>
</MTEntries>
</ul>
Name the template 'Recent Entries', or something like that, and give it an Output File of 'recent-entries.html' or similar. Save, and Rebuild the template, and there you go.