Files
unraid-mcp/unraid_mcp/main.py
Jacob Magar 493a376640 lintfree
2025-08-12 11:35:00 -04:00

23 lines
544 B
Python

#!/usr/bin/env python3
"""Unraid MCP Server - Entry Point.
This is the main entry point for the Unraid MCP Server. It imports and starts
the modular server implementation from unraid_mcp.server.
"""
def main() -> None:
"""Main entry point for the Unraid MCP Server."""
try:
from .server import run_server
run_server()
except KeyboardInterrupt:
print("\nServer stopped by user")
except Exception as e:
print(f"Server failed to start: {e}")
raise
if __name__ == "__main__":
main()