We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export function isWebauthnAvailable() {
if (typeof window === "undefined") {
return false;
}
if (typeof navigator === "undefined") {
return false;
}
if (window.PublicKeyCredential === undefined) {
return false;
}
const ua = navigator.userAgent.toLowerCase();
// Disable on all Android devices until it's ready for regular users.
if (ua.includes("android")) {
return false;
}
return true;
}