Ok, konečně jsem na to přišel (meteor 1.3, automatické publikování na)!
V lib/collections.js
var database;
if(Meteor.isServer){
console.log("On collections ");
database = new MongoInternals.RemoteCollectionDriver("mongodb://user:[email protected]:27017/db_name");
}
MyRemoteCollection = new Mongo.Collection('db_name', { _driver: database });
Poté jsem schopen získat hodnoty na straně klienta
console.log("MyRemoteCollection count = " + MyRemoteCollection.find().count());
Samozřejmě funguje pouze při načtení sbírek.
'Doufám, že to pomůže;)