blender-mcp/main.py
2025-03-08 14:04:42 +05:30

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()