hn_top
Fetch the top-ranked stories from Hacker News with customizable limits, ensuring you stay updated on trending tech and development topics efficiently.
Instructions
Get the top-ranked stories from Hacker News
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of stories to fetch (1-50, default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of stories to fetch (1-50, default: 10)",
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}