We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmagar/homelab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
time.ts•320 B
/**
* Time utility functions
*/
/**
* Get current timestamp in ISO 8601 format
* Centralized timestamp generation for consistency across the codebase
*
* @returns ISO 8601 timestamp string (e.g., "2026-02-14T12:34:56.789Z")
*/
export function getCurrentTimestamp(): string {
return new Date().toISOString();
}