Quick Start1. Start the Backend SystemCopy code# Start the main Functor backendpython -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000 # Or use Docker Compose for full stackdocker-compose up -d2. Start the MCP ServerCopy code# Start MCP server (port 8001)python app/mcp/server.py # Or use the provided script./scripts/start_mcp_server.sh3. Verify InstallationCopy code# Health checkcurl http://localhost:8001/health # Should return:# {# "status": "ok",# "server": "Functor Memory Server",# "version": "1.0.0"# }4. Basic Usage with Claude DesktopCreate or update your claude_desktop_config.json:Copy code{ "mcpServers": { "functor": { "command": "python", "args": ["app/mcp/server.py"], "env": { "MCP_API_KEY": "your-api-key", "QDRANT_URL": "http://localhost:6333" } } }}