# Dashboard & Memory Tools - Restart Instructions ## Issue The MCP server is showing 18 tools, but should show 22 tools (including 4 new memory tools). ## Solution Restart the MCP server to load the updated code with memory tools and dashboard API. ## Steps 1. **Stop the current server** (if running): ```bash pkill -f "uvicorn|mcp_server" ``` 2. **Start the server**: ```bash cd /home/beast/Code/atlas/home-voice-agent/mcp-server ./run.sh ``` 3. **Verify tools**: - Check `/health` endpoint: Should show 22 tools - Check `/api` endpoint: Should list all 22 tools including: - store_memory - get_memory - search_memory - list_memory 4. **Access dashboard**: - Open browser: http://localhost:8000 - Dashboard should load with status cards ## Expected Tools (22 total) 1. echo 2. weather 3. get_current_time 4. get_date 5. get_timezone_info 6. convert_timezone 7. create_timer 8. create_reminder 9. list_timers 10. cancel_timer 11. add_task 12. update_task_status 13. list_tasks 14. create_note 15. read_note 16. append_to_note 17. search_notes 18. list_notes 19. **store_memory** ⭐ NEW 20. **get_memory** ⭐ NEW 21. **search_memory** ⭐ NEW 22. **list_memory** ⭐ NEW ## Dashboard Endpoints - `GET /api/dashboard/status` - System status - `GET /api/dashboard/conversations` - List conversations - `GET /api/dashboard/tasks` - List tasks - `GET /api/dashboard/timers` - List timers - `GET /api/dashboard/logs` - Search logs