Hacker News MCP Server

by devabdultech
Verified

search

Search for stories and comments on Hacker News

Input Schema

NameRequiredDescriptionDefault
hitsPerPageNoThe number of results per page
pageNoThe page number
queryYesThe search query
typeNoThe type of content to search forall

Input Schema (JSON Schema)

{ "properties": { "hitsPerPage": { "default": 20, "description": "The number of results per page", "type": "number" }, "page": { "default": 0, "description": "The page number", "type": "number" }, "query": { "description": "The search query", "type": "string" }, "type": { "default": "all", "description": "The type of content to search for", "enum": [ "all", "story", "comment" ], "type": "string" } }, "required": [ "query" ], "type": "object" }