search_stories
Search Hacker News stories by relevance using queries, tags, and numeric filters to find content matching specific criteria.
Instructions
Search Hacker News stories by relevance. Returns stories matching the query, sorted by relevance score, points, and comment count.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query text. Can be empty to get all stories matching tags/filters. | |
| tags | No | Optional filter tags. Comma-separated for AND logic, use parentheses for OR: 'story', 'show_hn', 'ask_hn', 'front_page', 'author_USERNAME'. Example: 'author_pg,(story,poll)' | |
| numericFilters | No | Optional numeric filters: 'created_at_i>X', 'points>=Y', 'num_comments>=Z'. Comma-separated for AND. | |
| page | No | Page number (0-indexed) | |
| hitsPerPage | No | Results per page |