I am assigning methods to a Meteor server like so:
In bootstrap.js
Meteor.startup(function () { Meteor.methods({ foo: function () {
The same way you would call bar: Meteor.call("foo");
Meteor.call("foo");
If you are on the server and do not specify a callback the method will run synchronously.
Docs for Meteor.call: http://docs.meteor.com/#meteor_call