Files
2026-07-13 12:40:16 +08:00

9 lines
171 B
Python

from blender_mcp.server import main as server_main
def main():
"""Entry point for the blender-mcp package"""
server_main()
if __name__ == "__main__":
main()