hn_latest
Fetch recent stories from Hacker News with customizable limits (1-50) to stay updated on tech and development trends efficiently.
Instructions
Get the latest/newest 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"
}