getNewStories
Fetch the newest stories from Hacker News via MCP Hacker News server. Specify the number of stories to retrieve (default: 10, max: 50) for real-time updates on trending posts.
Instructions
Get newest stories from Hacker News
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"
}