# Quick Fix Guide ## Issue: ModuleNotFoundError: No module named 'pytz' **Solution**: Install pytz in the virtual environment ```bash cd /home/beast/Code/atlas/home-voice-agent/mcp-server source venv/bin/activate pip install pytz==2024.1 ``` Or re-run setup: ```bash ./setup.sh ``` ## Testing the Adapter The adapter is in a different directory: ```bash cd /home/beast/Code/atlas/home-voice-agent/mcp-adapter pip install -r requirements.txt python test_adapter.py ``` Make sure the MCP server is running first: ```bash # In one terminal cd /home/beast/Code/atlas/home-voice-agent/mcp-server ./run.sh # In another terminal cd /home/beast/Code/atlas/home-voice-agent/mcp-adapter python test_adapter.py ```