#!/usr/bin/env python3 """Backward-compatible entry point. Delegates to the ``dicom_mcp`` package so that ``python dicom_mcp.py`` continues to work. """ from dicom_mcp.server import run if __name__ == "__main__": run()