Major refactor: Multi-user Chrome MCP extension with remote server architecture

This commit is contained in:
nasir@endelospay.com
2025-08-21 20:09:57 +05:00
parent d97cad1736
commit 5d869f6a7c
125 changed files with 16249 additions and 11906 deletions

View File

@@ -0,0 +1,25 @@
/**
* Simple health check test
*/
import fetch from 'node-fetch';
const SERVER_URL = 'http://localhost:3001';
async function testHealth() {
try {
console.log('🔍 Testing health endpoint...');
const response = await fetch(`${SERVER_URL}/health`);
console.log('Status:', response.status);
console.log('Headers:', Object.fromEntries(response.headers.entries()));
const data = await response.json();
console.log('Response:', data);
} catch (error) {
console.error('❌ Error:', error);
}
}
testHealth();