Files
2025-03-15 03:30:00 +00:00

9 lines
179 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()