Server data from the Official MCP Registry
Hacker News signal extraction for technology trend monitoring
Hacker News signal extraction for technology trend monitoring
A well-structured MCP server for aggregating public tech intelligence from HackerNews, arXiv, Lobste.rs, and GitHub. Authentication is appropriately scoped (optional GITHUB_TOKEN for rate limits), no hardcoded secrets, and permissions align with its read-only intelligence-gathering purpose. Minor code quality observations exist but do not constitute security vulnerabilities. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
4 files analyzed Β· 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-malkreide-hn-tech-signal-mcp": {
"args": [
"hn-tech-signal-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
π¨π 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?"
FRONTIER arXiv API β Latest AI/ML papers (cs.AI, cs.LG, cs.CL, cs.CV)
DISCOURSE HackerNews β Top/best stories + Algolia full-text search
Lobste.rs β Curated, lower-noise tech signal
PRACTICE GitHub Search β What engineers are actually building right now
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.
| # | Tool | Source | Description |
|---|---|---|---|
| 1 | hn_top_stories | HackerNews | Top/best/new stories, with optional AI filter |
| 2 | hn_search | HN Algolia | Full-text search across all HN history |
| 3 | arxiv_latest | arXiv | Latest papers by category (cs.AI etc.) |
| 4 | arxiv_search | arXiv | Search papers by keyword/title/author |
| 5 | lobsters_hot | Lobste.rs | Curated tech stories, filterable by tag |
| 6 | github_trending_ai | GitHub | Trending AI repos by topic and stars |
| 7 | tech_signal_digest | All sources | Aggregated Markdown briefing |
uv or pipGITHUB_TOKEN for higher GitHub rate limits# Recommended: uvx (no install step needed)
uvx hn-tech-signal-mcp
# Alternative: pip
pip install hn-tech-signal-mcp
# Start the server (stdio mode for Claude Desktop)
uvx hn-tech-signal-mcp
# With optional GitHub token for higher rate limits
GITHUB_TOKEN=ghp_yourtoken uvx hn-tech-signal-mcp
Try 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. |
{
"mcpServers": {
"hn-tech-signal": {
"command": "uvx",
"args": ["hn-tech-signal-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_yourtoken_optional"
}
}
}
}
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/mcp# Local HTTP mode (binds 127.0.0.1 by default)
MCP_TRANSPORT=streamable_http MCP_PORT=8000 python -m hn_tech_signal_mcp.server
# Public bind (requires bearer token, intended behind a reverse proxy that terminates TLS)
MCP_TRANSPORT=streamable_http \
MCP_HOST=0.0.0.0 \
MCP_BEARER_TOKEN="$(openssl rand -hex 32)" \
python -m hn_tech_signal_mcp.server
Hardening: 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.
βββββββββββββββββββ βββββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββ
β Claude / AI ββββββΆβ HN Tech Signal MCP ββββββΆβ HackerNews Firebase β
β (MCP Host) βββββββ (MCP Server) ββββββΆβ HN Algolia Search β
βββββββββββββββββββ β ββββββΆβ arXiv.org (Atom API) β
β 7 Tools ββββββΆβ Lobste.rs JSON API β
β Stdio | Streamable HTTP ββββββΆβ GitHub Search API β
βββββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββ
hn-tech-signal-mcp/
βββ src/
β βββ hn_tech_signal_mcp/
β βββ __init__.py
β βββ server.py # All 7 tools
βββ tests/
β βββ __init__.py
β βββ test_server.py # 21 unit + 5 live tests
βββ pyproject.toml
βββ CHANGELOG.md
βββ CONTRIBUTING.md
βββ LICENSE
βββ README.md # This file (English)
βββ README.de.md # German version
# Unit tests (no network required)
PYTHONPATH=src pytest tests/ -m "not live"
# Live integration tests (requires network)
PYTHONPATH=src pytest tests/ -m "live"
"Give me a tech signal digest on AI today"
β tech_signal_digest(focus="AI")
"What are the top 5 arXiv papers on LLM agents this week?"
β arxiv_search(query="LLM agents", category_filter="cs.AI", limit=5)
"What is HackerNews discussing about model context protocol?"
β hn_search(query="model context protocol", days_back=30)
"Show me the latest NLP papers from arXiv"
β arxiv_latest(category="cs.CL", limit=10)
"Search arXiv for papers on retrieval-augmented generation"
β arxiv_search(query="retrieval augmented generation RAG", limit=10)
"What AI agent frameworks are trending on GitHub?"
β github_trending_ai(topic="ai-agents", sort="updated", limit=10)
"Show me the most starred MCP-related repos"
β github_trending_ai(topic="mcp", sort="stars", min_stars=50)
[β More use cases by audience β](EXAMPLES.md)
| 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.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
MIT License β see LICENSE
Hayal Oezkan Β· malkreide
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol Β· Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.