Skip to main content
Glama

Hacker News MCP Server

story.ts496 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 function formatStory(item: any): Story { 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", }; }

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