MCP GitHub Issue Server

/** * Format a timestamp into a human-readable date/time string */ export function formatTimestamp(timestamp: number): string { const date = new Date(timestamp); return date.toLocaleString('en-US', { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric', hour12: true, }); }