getComments
Fetch and display comments for a specific Hacker News story by providing the story ID and optional comment limit. Integrates with Hacker News MCP Server for enhanced functionality.
Instructions
Get comments for a story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | The maximum number of comments to fetch | |
storyId | Yes | The 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"
}