UNPKG

@microagents/server-hackernews

Version:

MCP server for Hacker News API integration

15 lines 363 B
export function formatStory(item) { return { id: item.id, title: item.title, url: item.url, text: item.text, by: item.by, score: item.score || 0, time: item.time, descendants: item.descendants || 0, kids: item.kids || [], type: "story", }; } //# sourceMappingURL=story.js.map