22 lines
433 B
Python
22 lines
433 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Maya MCP (Model Context Protocol) Module
|
|
Provides integration between Maya and Windsurf via the Model Context Protocol.
|
|
|
|
Version: 1.0.0
|
|
Author: Jeffrey Tsai
|
|
"""
|
|
|
|
from server import start_server, stop_server, is_server_running
|
|
|
|
# Initialize global variables
|
|
__version__ = "1.0.0"
|
|
|
|
# Export public functions
|
|
__all__ = [
|
|
'start_server',
|
|
'stop_server',
|
|
'is_server_running'
|
|
] |