This MCP server provides access to Hacker News data through a set of capabilities including searching stories and comments, retrieving various types of stories, fetching individual stories with comments, and accessing user profiles and submissions. Developed by devabdultech, it integrates with the Hacker News API and is built using TypeScript and Node.js. The server is designed for use cases requiring real-time access to Hacker News content, such as news aggregation, trend analysis, or building custom Hacker News clients.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Search for stories and comments on Hacker News using Algolia's search API. Inputs: query (string), type (optional string), page (optional number), hitsPerPage (optional number). Returns: Search results with stories and comments.
Get multiple stories by type (top, new, best, ask, show, job). Inputs: type (string), limit (optional number). Returns: Array of story objects.
Get a story along with its comment thread. Inputs: id (number). Returns: Story details with nested comments.
Get the full comment tree for a story. Inputs: storyId (number). Returns: Hierarchical comment tree structure.
Get a user's profile information. Inputs: id (string). Returns: User profile details including karma, created date, and about text.
Get a user's submissions (stories and comments). Inputs: id (string). Returns: Array of user's submitted stories and comments.