Se você estiver em um shell Linux/Unix, você pode tentar
for filename in *; do mongoimport -d mydb -c $filename; done
Se você estiver no Windows:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i