Hacker News MCP Server

by devabdultech
Verified

getComments

Get comments for a story

Input Schema

NameRequiredDescriptionDefault
limitNoThe maximum number of comments to fetch
storyIdYesThe ID of the story

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 30, "description": "The maximum number of comments to fetch", "type": "number" }, "storyId": { "description": "The ID of the story", "type": "number" } }, "required": [ "storyId" ], "type": "object" }