UNPKG

@devabdultech/hn-mcp-server

Version:

MCP Server for using the Hacker News API

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