Skip to main content
Glama

@missionsquad/mcp-rss

Official
date.ts638 B
/** * Convert various date formats to epoch milliseconds */ export function toEpochMs(date: Date | string | number | null | undefined): number | null { if (date === null || date === undefined) return null; try { if (typeof date === 'number') return date; const parsed = new Date(date); return isNaN(parsed.getTime()) ? null : parsed.getTime(); } catch { return null; } } /** * Format epoch milliseconds to ISO string */ export function epochToISO(epoch: number | null): string | null { if (epoch === null) return null; try { return new Date(epoch).toISOString(); } catch { return null; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MissionSquad/mcp-rss'

If you have feedback or need assistance with the MCP directory API, please join our Discord server