"""Entry point for running haproxy_mcp as a module.""" from .server import mcp from .tools.configuration import startup_restore if __name__ == "__main__": startup_restore() mcp.run(transport="streamable-http")