stored procedures in mysql

Is there a way to give customers the capability to run stored procedures in mysql without having to give them Super User privileges?

Thanks!

With what understanding I can make of it, a mysql stored procedure shouldn’t require the user to have superuser privileges unless the DEFINER of the stored procedure is root.

You could try setting up a stored procedure with the definer of said procedure being someone other than root and running it, then posting the result.