<!DOCTYPE html>
<html>
<head>
<title>Chrome Debug MCP Test</title>
</head>
<body>
<h1>Chrome Debug MCP Test Page</h1>
<script>
// Generate some console messages
console.log("Test log message");
console.info("Test info message");
console.warn("Test warning message");
console.error("Test error message");
// Create a global variable to test evaluate
window.testVariable = "Hello from test page!";
</script>
</body>
</html>