A Model Context Protocol (MCP) server that provides tools for fetching information from Hacker News. - getstories Fetching (top, new, askhn, showhn) stories - getstoryinfo Fetching comments associated with a story - searchstories Searching for stories by query - getuserinfo Fetching user info Use prompts like the following: A more detailed example with the puppeteer MCP server: To install Hacker N
Add this skill
npx mdskills install erithwik/mcp-hnWell-documented MCP server with useful HN tools but declares excessive permissions for read-only API access
1# Hacker News MCP Server23[](https://smithery.ai/server/mcp-hn)45A Model Context Protocol (MCP) server that provides tools for fetching information from Hacker News.67<a href="https://glama.ai/mcp/servers/e0rco8dfgt"><img width="380" height="200" src="https://glama.ai/mcp/servers/e0rco8dfgt/badge" alt="mcp-hn MCP server" /></a>89## Tools1011- `get_stories` Fetching (top, new, ask_hn, show_hn) stories12- `get_story_info` Fetching comments associated with a story13- `search_stories` Searching for stories by query14- `get_user_info` Fetching user info1516## Example Usage1718Use prompts like the following:1920```21User: Get the top stories of today22 Output: Uses `get_stories` tool and returns a story about AI23User: What does the details of the story today that talks about the future of AI24 Output: Uses `get_story_info` tool based on the results of the previous tool25User: What has the user `pg` been up to?26 Output: Uses `get_user_info` tool and returns a summary of the user's activity27User: What does hackernews say about careers in AI?28 Output: Uses `search_stories` tool and returns a summary of the comments29```3031A more detailed example with the puppeteer MCP server:3233```34User: What are the top stories of today?35 Output: Uses `get_stories` tool and returns a story about AI36User: Can you use the puppeteer tool to read the article about <AI> and also use the hackernews tool to view the comments and give me a summary of what the main comments are about the article?37 Output: Uses puppeteer tool to read the article about AI and then uses the `get_story_info` hn tool to get the comments and returns a summary of the comments38```3940## Quickstart4142### Installing via Smithery4344To install Hacker News MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-hn):4546```bash47npx -y @smithery/cli install mcp-hn --client claude48```4950### Claude Desktop:5152Update the following:5354On MacOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`5556On Windows: `%APPDATA%/Claude/claude_desktop_config.json`5758With the following for production:5960```json61{62 "mcpServers": {63 "mcp-hn": {64 "command": "uvx",65 "args": ["mcp-hn"]66 }67 }68}69```707172
Full transparency — inspect the skill content before installing.