// Polyfill for util.isNullOrUndefined which was removed in newer Node.js versions
export function isNullOrUndefined(value: any): boolean {
return value === null || value === undefined;
}
// Make it available globally for TensorFlow.js
(global as any).isNullOrUndefined = isNullOrUndefined;
// Minimal performance.now polyfill for environments missing it
if (!(globalThis as any).performance) {
(globalThis as any).performance = { now: () => Date.now() } as any;
}
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/henryhawke/mcp-titan'
If you have feedback or need assistance with the MCP directory API, please join our Discord server