#!/usr/bin/env python3 """ Main application entry point for HuggingFace Spaces. This file serves as the main entry point when deployed to HuggingFace Spaces. It redirects to the entrypoint module which starts the MCP server. """ # Import and run the entrypoint from entrypoint import main if __name__ == "__main__": main()