Skip to main content
Glama

Hacker News MCP Server

comment.ts384 B
export interface Comment { id: number; text: string; by: string; time: number; parent: number; kids?: number[]; type: "comment"; } export function formatComment(item: any): Comment { return { id: item.id, text: item.text || "", by: item.by || "deleted", time: item.time, parent: item.parent, kids: item.kids || [], type: "comment", }; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/devabdultech/hn-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server