Long_Term_Memory_MCP_Server / run_mcp_server.py
cheeeaaat's picture
Long Term Memory MCP Server
d317445
Raw
History Blame Contribute Delete
388 Bytes
#!/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())