As of Nov 2018, you can just use rawCollection to access the collection returned by Mongo Driver and then insert an array of documents as per the Mongo documentation.
Example:
let History = new Mongo.Collection('History');
History.rawCollection().insert([entry1, entry2, entry3]);