mcp-hn
by erithwik
get_stories
Get stories from Hacker News. The options are top
, new
, ask_hn
, show_hn
for types of stories. This doesn't include the comments. Use get_story_info
to get the comments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_stories | No | Number of stories to get | |
story_type | No | Type of stories to get, one of: `top`, `new`, `ask_hn`, `show_hn` |
Input Schema (JSON Schema)
{
"properties": {
"num_stories": {
"description": "Number of stories to get",
"type": "integer"
},
"story_type": {
"description": "Type of stories to get, one of: `top`, `new`, `ask_hn`, `show_hn`",
"type": "string"
}
},
"type": "object"
}