Somthing like that should be possible code and details might vary...
import mitk.plugin import mitk.ioutil nodes = mitk.plugin.get_current_selection() for node in nodes: file_name = node.get_name()+'.nrrd' mitk.ioutil.save(node.get_data(), file_name)
Result: data of all selected nodes are saved.