Ryan Malloy d7b56da7c7 Fix import errors and type annotations
- Replace all Dict/List type hints with dict/list for Python 3.12+ compatibility
- Add __main__.py to make package executable as module
- Remove unused imports (cv2, numpy, ffmpeg) that were causing warnings
- Fix bare except clause to use Exception
- Server now starts successfully without import errors
2025-09-05 02:56:55 -06:00

6 lines
117 B
Python

"""Main entry point for mcp_video_editor package."""
from .server import main
if __name__ == "__main__":
main()