hn_best
Fetch top stories from Hacker News with customizable limits. Retrieve trending tech and startup content for insights and updates.
Instructions
Get the best 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"
}