File size: 388 Bytes
d317445 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/env python3
"""
Standalone MCP Server runner
Use this script to run only the MCP server without Gradio
"""
import sys
import asyncio
from pathlib import Path
# Add current directory to path
sys.path.insert(0, str(Path(__file__).parent))
from mcp_server import main
if __name__ == "__main__":
print("🧠 Starting Long Term Memory MCP Server...")
asyncio.run(main()) |