UNPKG

@microagents/server-hackernews

Version:

MCP server for Hacker News API integration

12 lines 291 B
export function formatComment(item) { return { id: item.id, text: item.text || "", by: item.by || "deleted", time: item.time, parent: item.parent, kids: item.kids || [], type: "comment", }; } //# sourceMappingURL=comment.js.map