# Server Restart Instructions ## Issue: Server Showing Only 2 Tools Instead of 6 The code has 6 tools registered, but the running server is still using old code. ## Solution: Restart the Server ### Step 1: Stop Current Server In the terminal where the server is running: - Press `Ctrl+C` to stop the server ### Step 2: Restart Server ```bash cd /home/beast/Code/atlas/home-voice-agent/mcp-server ./run.sh ``` ### Step 3: Verify Tools After restart, test the server: ```bash # Test tools/list curl -X POST http://localhost:8000/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc": "2.0", "method": "tools/list", "id": 1}' ``` You should see 6 tools: 1. echo 2. weather 3. get_current_time 4. get_date 5. get_timezone_info 6. convert_timezone ### Alternative: Verify Before Restart ```bash cd /home/beast/Code/atlas/home-voice-agent/mcp-server source venv/bin/activate python verify_tools.py ``` This will show that the code has 6 tools - you just need to restart the server to load them.