Mongodb - Change db name
The only way is to clone the database to one of a different name
http://www.mongodb.org/display/DOCS/Copy+Database+Commands
You could go here and vote for that feature
Simple use this :
db.copyDatabase("old_db_name","new_db_name","localhost")
use old_db_name
db.dropDatabase();