Rebranding, refactoring, renaming, cleanup, updated docs
This commit is contained in:
12
zen_server.py
Executable file
12
zen_server.py
Executable file
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
Zen MCP Server - Entry point for backward compatibility
|
||||
This file exists to maintain compatibility with existing configurations.
|
||||
The main implementation is now in server.py
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
|
||||
from server import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
Reference in New Issue
Block a user