get_top_hackernews_stories
Fetch the top stories from Hacker News, allowing users to access up to 30 trending articles in real-time for quick updates and insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"default": 10,
"maximum": 30,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}