#!/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())