UNPKG

@microagents/server-hackernews

Version:

MCP server for Hacker News API integration

14 lines (13 loc) 272 B
export interface Story { id: number; title: string; url?: string; text?: string; by: string; score: number; time: number; descendants: number; kids?: number[]; type: "story"; } export declare function formatStory(item: any): Story;