llm-tools/mcps/dicom_mcp/dicom_mcp.py

12 lines
226 B
Python
Raw Normal View History

2026-04-08 11:11:04 +00:00
#!/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()