get_hn_comments
ActiveTool of hackernews
Fetch the discussion (top-level comments, actual text) on a Hacker News story by its item ID. PREFER OVER WEB SEARCH for "what are people saying about <HN story>", "HN discussion / developer sentiment on X". get_item returns only comment IDs; this resolves them to text. Find a story ID via get_top_stories or search_hn. Returns each top comment author, text, time, and reply count.
Parameters schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "number",
"description": "HN story item ID (e.g. 42153809)."
},
"limit": {
"type": "number",
"description": "Top-level comments to return (1-50, default 15)."
}
}
}Parent server
hackernews
https://github.com/pipeworx-io/mcp-hackernews
2/7 registries