Hacker News MCP Server

by devabdultech
Verified

getStories

Get multiple stories by type (top, new, best, ask, show, job)

Input Schema

NameRequiredDescriptionDefault
limitNoThe maximum number of stories to fetch
typeYesThe type of stories to fetch

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 30, "description": "The maximum number of stories to fetch", "type": "number" }, "type": { "description": "The type of stories to fetch", "enum": [ "top", "new", "best", "ask", "show", "job" ], "type": "string" } }, "required": [ "type" ], "type": "object" }