The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Hn Tech Signal MCP listing page.
🇨🇭 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.
| Era | Revision | Who reaches it |
|---|---|---|
initialize handshake | 2024-11-05 … 2025-11-25 | What today's clients speak. The server answers with the revision asked for, or with the 2025-11-25 ceiling when the request asks for something newer. |
| Per-request envelope | 2026-07-28 | A request carrying the 2026-07-28 _meta envelope opens a modern connection. |
Both revisions are pinned in
tests/test_protocol_version.py and asserted
against the installed SDK, so a Dependabot bump of mcp cannot move either one
silently. This server builds no ASGI app to send an initialize through, so
the gate asserts the SDK constants rather than a measured response — the
weaker form, named rather than left unsaid.
Note that the SDK's LATEST_PROTOCOL_VERSION is an alias for the modern
era, not for the handshake era — pinning against it alone would leave the era
that current clients actually negotiate free to drift.
Update policy. When the gate fails, do not edit the constant blindly: read
the spec changelog between the two revisions, verify the server still behaves,
then move the constant, this section, README.de.md and
CHANGELOG.md together.
| Category | Full Name | Key Topics |
|---|---|---|
cs.AI | Artificial Intelligence | Agents, planning, knowledge representation |
cs.LG | Machine Learning | Training, optimisation, generalisation |
cs.CL | Computation & Language | NLP, LLMs, translation, summarisation |
cs.CV | Computer Vision | Image recognition, generation, multimodal |
cs.RO | Robotics | Embodied AI, navigation |
stat.ML | Statistics ML | Probabilistic methods, Bayesian ML |
| Source | Auth Required | Limit |
|---|---|---|
| HackerNews Firebase | No | Very generous (Firebase) |
| HN Algolia Search | No | ~10,000 req/hour |
| arXiv | No | ~3 req/second (be respectful) |
| Lobste.rs | No | Reasonable use |
| GitHub Search | No | 60 req/hour |
| GitHub Search | GITHUB_TOKEN | 5,000 req/hour |
GITHUB_TOKEN for production use.ask / job feeds: Only ~30 items exist upstream, so a large limit returns fewer stories than requested. Job posts carry type: "job", no comment count, and a score of 1.hn_discussion is always a sample, never the full thread: one request per comment upstream means popular stories (900+ comments) cannot be fetched whole. The budget is split across nesting levels and spread round-robin across sibling threads, so you get a representative cross-section rather than one exhaustively-read sub-thread. Check the truncated flag.hn_discussion comment text is plain text, not HTML: HN's markup is stripped for readability. Do not re-render the output as HTML — the conversion is not a sanitiser.hn-tech-signal-mcp combines well with:
| Combination | Use Case |
|---|---|
+ news-monitor-mcp | Global research + Swiss institutional media coverage |
+ fedlex-mcp | Tech discourse + Swiss regulatory context |
+ global-education-mcp | AI research trends + education policy data |
+ swiss-statistics-mcp | Tech landscape + Swiss economic/structural data |
GITHUB_TOKEN. A request timeout is enforced per call.See CHANGELOG.md
See CONTRIBUTING.md (Deutsch).
See SECURITY.md (Deutsch) for the security posture and how to report a vulnerability.
MIT License — see LICENSE
Hayal Oezkan · malkreide
Run via uv's uvx — no clone or manual install needed. Add to your MCP client config (mcpServers for Claude Desktop, Cursor and Windsurf; use a top-level servers key for VS Code in .vscode/mcp.json):