define the helper in the controller, and use helper_method maybe?
You can also directly instanciate a Helper object and call a method.
example with number_to_currency:
Object.new.extend(ActionView::Helpers::NumberHelper).number_to_currency(number, options)
but beware that is there are methods of other Helpers methods, they will fail.