getCommentTree
Retrieve a structured comment thread for any Hacker News story by providing the story ID. Use this tool to access and analyze nested discussions within the Hacker News platform.
Instructions
Get a comment tree for a story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storyId | Yes | The ID of the story |
Input Schema (JSON Schema)
{
"properties": {
"storyId": {
"description": "The ID of the story",
"type": "number"
}
},
"required": [
"storyId"
],
"type": "object"
}