We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/coderdeep11/claude-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
time.ts•333 B
/**
* Time utilities for consistent timestamp handling
*/
/**
* Returns the current time in ISO format
*/
export function getCurrentTimestamp(): string {
return new Date().toISOString();
}
/**
* Formats a date object to ISO string
*/
export function formatTimestamp(date: Date): string {
return date.toISOString();
}