We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/etsd-tech/mcp-pointer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•363 B
/**
* Utility function to create a promise that resolves after a specified delay
* @param ms - Number of milliseconds to wait
* @returns Promise that resolves after the delay
*/
// eslint-disable-next-line import/prefer-default-export
export function sleep(ms: number): Promise<void> {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}