get_stories
Fetch structured Hacker News stories by type (top, new, ask, show, jobs) and limit results to a specified number. Designed to provide parsed HTML content from news.ycombinator.com.
Instructions
Get stories from Hacker News
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of stories to return (max 30) | |
type | No | Type of stories to fetch (top, new, ask, show, jobs) | top |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of stories to return (max 30)",
"maximum": 30,
"minimum": 1,
"type": "number"
},
"type": {
"default": "top",
"description": "Type of stories to fetch (top, new, ask, show, jobs)",
"enum": [
"top",
"new",
"ask",
"show",
"jobs"
],
"type": "string"
}
},
"type": "object"
}