I\'ve got a meteor collection on the client side
Friends = new Meteor.Collection(\"Friends\"); Meteor.subscribe(\"Friends\");
I have a user
You need that Collection declaration on both the client and the server.
// common code, do not put under /client or inside Meteor.is_client test Friends = new Meteor.Collection("Friends");