getComments
Fetch and analyze comments for a specific Hacker News post using an MCP server. Retrieve nested comments with customizable depth for targeted insights.
Instructions
Get comments for a specific item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Maximum depth of comments to fetch (default: 2) | |
id | Yes | The item ID to fetch comments for |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": 2,
"description": "Maximum depth of comments to fetch (default: 2)",
"type": "number"
},
"id": {
"description": "The item ID to fetch comments for",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}