get-latest-comments
Retrieve recently posted comments from HackerNews to monitor community discussions and stay updated on current conversations.
Instructions
Get the most recent comments posted to HackerNews
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hitsPerPage | No | Number of results per page (default: 20) | |
page | No | Page number for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"hitsPerPage": {
"description": "Number of results per page (default: 20)",
"type": "number"
},
"page": {
"description": "Page number for pagination (default: 0)",
"type": "number"
}
},
"type": "object"
}