Hacker News signal extraction for technology trend monitoring
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
π¨π Part of the Swiss Public Data MCP Portfolio
MCP server for global tech & AI signal intelligence β aggregates HackerNews, arXiv, Lobste.rs and GitHub into a structured briefing. No API key required.
hn-tech-signal-mcp turns any AI assistant into a proactive tech intelligence analyst. The server aggregates four signal layers β research frontier, developer discourse, curated signal, and open-source practice β into a single, structured briefing.
No authentication required. All four data sources are public APIs. Optional: set GITHUB_TOKEN for higher GitHub rate limits (5,000 req/h vs. 60 req/h unauthenticated).
Anchor demo query: "Give me a tech signal digest on AI today β what is happening in research, developer discourse and open source?"
Think of the four layers as a radar: arXiv shows what's coming over the horizon, HN and Lobste.rs show what practitioners are discussing, and GitHub shows what teams are actually shipping.
Within the discourse layer there are two levels of depth. The feeds and the search tell you what is being discussed; hn_discussion tells you what is actually being argued β the counter-arguments and the "we tried this in production" replies that carry the real signal.
| # | Tool | Source | Description |
|---|---|---|---|
| 1 | hn_top_stories | HackerNews | Six feeds: top/best/new/ask/show/job, with score filter |
| 2 | hn_search | HN Algolia | Full-text search across all HN history |
| 3 | hn_discussion | HackerNews | Nested comment thread under a story |
| 4 | arxiv_latest | arXiv | Latest papers by category (cs.AI etc.) |
| 5 | arxiv_search | arXiv | Search papers by keyword/title/author |
| 6 | lobsters_hot | Lobste.rs | Curated tech stories, filterable by tag |
| 7 | github_trending_ai | GitHub | Trending AI repos by topic and stars |
| 8 | tech_signal_digest | All sources | Aggregated Markdown briefing |
| Feed | Content | Upstream size |
|---|---|---|
top | Front page as ranked right now | 500 items |
best | Highest-voted recent stories | 200 items |
new | Newest submissions, unfiltered | 500 items |
ask | Ask HN β what practitioners are stuck on | ~30 items |
show | Show HN β what people are shipping | 200 items |
job | YC portfolio job posts (type: "job", no comments, score always 1) | ~30 items |
ask and job are short feeds upstream, so a large limit may return fewer stories than requested.
uv or pipGITHUB_TOKEN for higher GitHub rate limitsTry immediately in Claude Desktop:
"Give me a tech signal digest on AI today" "What are the latest cs.AI papers from the last 48 hours?" "What is HackerNews discussing about MCP this week?" "Show me trending GitHub repos for the topic 'ai-agents'"
| Variable | Default | Description |
|---|---|---|
GITHUB_TOKEN | β | Optional. GitHub personal access token. Without it: 60 req/h. With it: 5,000 req/h. The token is only sent to api.github.com, never to other upstreams. |
MCP_TRANSPORT | stdio | Transport: stdio or streamable_http |
MCP_HOST | 127.0.0.1 | Bind host for HTTP transport. Non-loopback values require MCP_BEARER_TOKEN. |
MCP_PORT | 8000 | Port for HTTP transport |
MCP_BEARER_TOKEN | β | Required when MCP_HOST is not loopback. Shared secret to gate the HTTP endpoint. |
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAfter restarting Claude Desktop, all 7 tools are available.
For use via claude.ai in the browser (e.g. on managed workstations):
Render.com (recommended):
GITHUB_TOKEN in the Render dashboardhttps://your-app.onrender.com/mcpHardening: the server refuses to bind to non-loopback hosts unless
MCP_BEARER_TOKENis set. Run cloud deployments behind a TLS-terminating reverse proxy (Render, Fly, Caddy, β¦) and treatMCP_BEARER_TOKENas the shared client secret your proxy enforces.
This server uses Architecture A (live API only, two paths per source). There is no bulk dump to fall back on.
Rationale (verified live on 2026-07-28 against the official HackerNews API):
{top,best,new,ask,show,job}stories.json) answer HTTP 200 with 29β500 IDs. No auth, no rate-limit headers, Cache-Control: no-cache.CACHE_TTL.hn_search.item/<id>.json is one request per item. Feeds and comment threads therefore fan out, which is why both are bounded (HN_MAX_CONCURRENCY, max_comments).Consequences:
httpx.AsyncClient, closed via the FastMCP lifespan.null body rather than a 404 β hn_discussion translates that into an explicit "no item found" message.This server speaks two protocol eras over the same endpoint. The client's first request on a connection decides which one applies; a later claim from the other era is refused.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/hn-tech-signal-mcp)<a href="https://allmcps.com/mcp/hn-tech-signal-mcp"><img src="https://allmcps.com/api/badge/hn-tech-signal-mcp?style=directory" alt="Hn Tech Signal MCP on AllMCPs" /></a>