We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/statespace-tech/toolfront'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
analytics.js•567 B
// Add homepage class to body for conditional styling
function checkHomepage() {
var path = window.location.pathname;
var isHome = path.match(/^\/(index\.html?)?$/);
if (isHome) {
document.body.classList.add('homepage');
} else {
document.body.classList.remove('homepage');
}
}
// Run on DOM ready (fallback for non-instant-navigation cold loads)
document.addEventListener('DOMContentLoaded', checkHomepage);
// Handle Material instant navigation
if (typeof document$ !== 'undefined') {
document$.subscribe(checkHomepage);
}