We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HyperbolicLabs/hyperbolic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
utils.ts•280 B
/**
* Utility function to wait for a specified duration
* @param ms Duration to wait in milliseconds
* @returns Promise that resolves after the specified duration
*/
export function wait(ms: number): Promise<void> {
return new Promise(resolve => setTimeout(resolve, ms));
}