MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

MCP server by stuctf

Created 3/14/2026
Updated about 21 hours ago
Repository documentation and setup instructions

hn-mcp

An MCP server that gives any MCP-compatible client (like Claude Code) the ability to browse, search, and read Hacker News using the official Firebase API and Algolia Search API, with no API keys or external dependencies required.

Tools

| Tool | Description | |------|-------------| | hn_front_page | Fetch stories from any HN feed (top, new, best, ask, show, job) | | hn_search | Search HN history with filters for date range, minimum points, and content type | | hn_comments | Fetch a story's comment tree with configurable depth and limit | | hn_user | Look up a user profile and optionally their recent submissions |

Build

go build -o hn-mcp

Configure

Add the server to your MCP client config. For Claude Code, add this to .mcp.json:

{
  "mcpServers": {
    "hackernews": {
      "command": "/path/to/hn-mcp",
      "args": []
    }
  }
}

Replace /path/to/hn-mcp with the actual path to the built binary.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/stuctf/HackerNewsMCP
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "stuctf-hackernewsmcp": { "command": "git", "args": [ "clone", "https://github.com/stuctf/HackerNewsMCP" ] } } }