Finalmente he creado una herramienta en el trabajo para hacer esto y pensé en compartirlo si alguien está interesado. Es bastante simple, ya que yo no soy un programador. El script hará una lista de todos los rásteres en el espacio de trabajo de entrada y el clip a una clase de entidad de entrada. Cada ráster de salida será el mismo nombre que la original trama plus "_Clip".
import arcpy
#Set variables
wspace = arcpy.GetParameterAsText (0)
clip_feature = arcpy.GetParameterAsText (1)
#Set user input workspace (Geodatabase containing rasters)
#and output cell size
arcpy.env.workspace = wspace
arcpy.env.cellSize = 30
#List rasters in the workspace and clip them to the user input feature class boundary
rlist = arcpy.ListRasters ()
print rlist
#The output name will be the input raster name followed with "_Clip"
name = "Clip"
for rast in rlist:
arcpy.Clip_management (rast, "#", rast + "_" + str (name), clip_feature, "", "ClippingGeometry")
Esto podría ser presentada en el modelo del generador si se requiere como otra solución a mi propia pregunta.