Pattern terms aside, we have strived at our company to keep business logic out of the MDB class itself. This works really well for what you are trying to build here, which almost sounds more like an Enterprise Service Bus (ESB) Service Gateway pattern. Check out the following links from MSDN (good page even though it isnt Java) and Martin Fowler.
I would recommend allowing the MDB to take in the messages. Then you could use other patterns (Command, Strategy, Factory, etc) to do the actual work. Or, the main MDB could figure out where the message should be forwarded to and then forward the message to a queue dedicated to a particular type of function.
This does add some administrative and resource overhead from the perspective of more queues and MDB's. But it also adds a bit more separation between the different logic for the differing messages (ie, separation of concerns). And it also gives you the ability to throttle the differing "implementation" queues differently depending on performance needs, rather than having one queue be the bottleneck for all.
There are performance considerations to adding new queues. I wish I could give you a concrete answer as to "how much", but I can't really as it depends on what you choose to use for your application server and your JMS and/or messaging provider. And unfortunately, there is no magic "number" for what is right. You really have to sit down and discuss with other architects how many queues you need. It is best to do this upfront with your design. This will hammer out any number of queues. Next try to figure out the load on the system. How big will your messages be? 100KB? 1MB? 5MB? larger? smaller? And then how many messages will be coming through the system at a time? With numbers like these you can revisit your decision on the number of queues and see if it still makes sense. You can also have your application server/messaging admins (or you if that happens to be you) throttle the queues with the different configuration settings so as to allow for smoother messaging through your system. (You may also need to tune the application/messaging servers JVM heap settings too depending on what you encounter).
Sadly, the best way to gain performance by throttling your application server is by reading, reading, reading whatever documentation and forums say about it. And also by experience of working it yourself.
But even with that. The most important thing is good and yet simplistic design. If you go overboard and make a queue for everything you may impact performance. But then again you may not. But you might over-complicate your application and make it harder to troubleshoot.
I'll try to find some more links for you, but honestly take what we all say here and discuss it with your fellow developers.
And if you could alter your question to mention how many message types you might deal with or their purpose, we all could give you a better recommendation along the design, number of queues, etc.