Warning: you must have meteor installed on your machine.
curl https://install.meteor.com/ | sh
Go to the app directory, and launch meteor:
cd mfs/
meteor
Query to display the results:
meteor mongo
> db.founders.find({ linkedin: { $exists: true} }, {_id: 0, url: 0 }).forEach(function(f){print(tojson(f, '', true));});