You could write a small MediaWiki extension that uses a hook to execute a function that modifies the page output after the article content has already been parsed and insert the comment area where you want.
Based on line 72 here, it looks like all FB-Connect does when you put <fb:comments></fb:comments>in the article text is cause the same thing to be outputted in the HTML, and everything else is probably handled by javascript(s) that FB-Connect includes by default. So, you can simply use the SkinAfterContent hook if you want the comment box to appear below the content box (a good example of this is Semantic MediaWiki's Factbox - example) . If you want the comment box to appear within the article content or especially at a specific place within the article content, then you need one of the page rendering hooks, possibly ParserAfterTidy, though I'm not sure.
If you need the hooked function to output a template, or other mediawiki markup, then it's possible to more or less pass some markup and the Page object to a Parser and get the resulting html text.