UNPKG

@devabdultech/hn-mcp-server

Version:

MCP Server for using the Hacker News API

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