getBestStories
Fetch algorithmically ranked top stories from Hacker News using the MCP server, specifying the number of stories to retrieve up to a maximum limit.
Instructions
Get best stories from Hacker News (algorithmically ranked)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of stories to return (default: 10, max: 50) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of stories to return (default: 10, max: 50)",
"type": "number"
}
},
"type": "object"
}