We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/autonull/mcplogic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
browser-smoke.html•1.22 KiB
<!DOCTYPE html>
<html>
<head>
<title>MCP Logic Browser Verification</title>
</head>
<body>
<h1>MCP Logic Browser Verification</h1>
<pre id="output">Running checks...</pre>
<script type="module">
const output = document.getElementById('output');
const log = (msg) => { output.textContent += '\n' + msg; };
// Mock import mapping for browser test (requires dependencies to be served or mapped)
// For this test, we assume a setup where dependencies are available via ESM
// This is a simplified check to verify ES module structure
try {
// Import the library (relative path to dist-browser)
// Note: In a real browser this needs proper serving.
// We use this file primarily for integration testing via Playwright
// where we can mock module resolution or serve files.
// Just verifying syntax and imports for now
log('✓ Script loaded');
// We'll rely on Playwright test to actually load modules and run logic
// because of the dependency complexity (tau-prolog, logic-solver)
} catch (e) {
log('✗ Failed: ' + e.message);
}
</script>
</body>
</html>