We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MadeByTokens/browser-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-media.html•1.06 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MCP Media Test Page</title>
</head>
<body>
<h1>Media Test Page</h1>
<p>This page is used for testing browser media tools.</p>
<h2>Audio Element</h2>
<audio id="test-audio" controls loop>
<source src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<h2>Video Element</h2>
<video id="test-video" width="320" height="240" controls loop muted>
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerBlazes.mp4"
type="video/mp4">
Your browser does not support the video element.
</video>
<script>
// Fallback: create Web Audio oscillator if audio tag fails to load data URI
const audio = document.getElementById('test-audio');
if (audio.error) {
console.error('Audio tag error:', audio.error);
}
</script>
</body>
</html>