We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/angiejones/mcp-selenium'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
<!DOCTYPE html>
<html>
<head><title>Alert Test Page</title></head>
<body>
<h1>Alert Tests</h1>
<button id="alert-btn" onclick="alert('Hello from alert!'); document.getElementById('alert-result').textContent = 'alerted'">Show Alert</button>
<button id="confirm-btn" onclick="document.getElementById('confirm-result').textContent = confirm('Do you confirm?') ? 'confirmed' : 'cancelled'">Show Confirm</button>
<button id="prompt-btn" onclick="var r = prompt('Enter your name:'); if(r !== null) document.getElementById('prompt-result').textContent = r;">Show Prompt</button>
<p id="alert-result"></p>
<p id="confirm-result"></p>
<p id="prompt-result"></p>
</body>
</html>