参考までに、GeoJSONはMongoose3.6で正式にサポートされています
こちらのリリースノートをご覧ください。
例(ドキュメントから):
new Schema({ loc: { type: [Number], index: '2dsphere'}})
...次に...
var geojsonPoly = { type: 'Polygon', coordinates: [[[-5,-5], ['-5',5], [5,5], [5,-5],[-5,'-5']]] }
Model.find({ loc: { $within: { $geometry: geojsonPoly }}})
// or
Model.where('loc').within.geometry(geojsonPoly)