Rebranding, refactoring, renaming, cleanup, updated docs

This commit is contained in:
Fahad
2025-06-12 10:40:43 +04:00
parent 9a55ca8898
commit fb66825bf6
55 changed files with 1048 additions and 1474 deletions

12
zen_server.py Executable file
View 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())