MCP server for tech & AI intelligence โ aggregates HackerNews, arXiv, Lobste.rs and GitHub. No API key required.
Project description
๐จ๐ญ Part of the Swiss Public Data MCP Portfolio
๐ก hn-tech-signal-mcp
MCP server for global tech & AI signal intelligence โ aggregates HackerNews, arXiv, Lobste.rs and GitHub into a structured briefing. No API key required.
Overview
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?"
Signal Architecture
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.
Features
- ๐ฌ Research frontier โ Latest arXiv papers by category (cs.AI, cs.LG, cs.CL, and more)
- ๐ arXiv full-text search โ Find papers by keyword, title, or author
- ๐ฃ๏ธ HackerNews top/best/new โ With optional AI-keyword filter
- ๐ HackerNews search โ Full history via Algolia, with date range filter
- ๐ง Lobste.rs hottest โ Curated developer signal, filterable by tag
- ๐ ๏ธ GitHub trending AI repos โ Search by topic, stars, sort by activity or popularity
- ๐ Tech signal digest โ One-call cross-source briefing in Markdown
- โ๏ธ Dual transport โ stdio for Claude Desktop, Streamable HTTP for cloud deployment
| # | 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 |
Prerequisites
- Python 3.11+
uvorpip- No API key required
- Optional:
GITHUB_TOKENfor higher GitHub rate limits
Installation
# Recommended: uvx (no install step needed)
uvx hn-tech-signal-mcp
# Alternative: pip
pip install hn-tech-signal-mcp
Quickstart
# 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'"
Configuration
Environment Variables
| Variable | Default | Description |
|---|---|---|
GITHUB_TOKEN |
โ | Optional. GitHub personal access token. Without it: 60 req/h. With it: 5,000 req/h. |
MCP_TRANSPORT |
stdio |
Transport: stdio or streamable_http |
MCP_PORT |
8000 |
Port for HTTP transport |
Claude Desktop Configuration
{
"mcpServers": {
"hn-tech-signal": {
"command": "uvx",
"args": ["hn-tech-signal-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_yourtoken_optional"
}
}
}
}
Config file locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
After restarting Claude Desktop, all 7 tools are available.
Cloud Deployment (Streamable HTTP)
For use via claude.ai in the browser (e.g. on managed workstations):
Render.com (recommended):
- Push/fork the repository to GitHub
- On render.com: New Web Service โ connect GitHub repo
- Optionally set
GITHUB_TOKENin the Render dashboard - In claude.ai under Settings โ MCP Servers, add:
https://your-app.onrender.com/mcp
# Docker / local HTTP mode
MCP_TRANSPORT=streamable_http MCP_PORT=8000 python -m hn_tech_signal_mcp.server
Architecture
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโ
โ 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 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโ
Project Structure
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
Testing
# Unit tests (no network required)
PYTHONPATH=src pytest tests/ -m "not live"
# Live integration tests (requires network)
PYTHONPATH=src pytest tests/ -m "live"
Example Use Cases
KI-Fachgruppe / AI Working Group
"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)
Research Monitoring
"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)
Open Source Intelligence
"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)
arXiv Category Reference
| 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 |
Rate Limits
| 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 |
Known Limitations
- GitHub rate limit: 60 req/h without token. Set
GITHUB_TOKENfor production use. - arXiv: Papers may take up to 24h to appear after submission. Weekends/holidays have delayed batches.
- HackerNews: Top/best story lists update every few minutes. Very new stories may have low scores.
- Lobste.rs: Smaller community than HN; tech-focused but may not cover all AI topics.
- tech_signal_digest: Makes ~4 concurrent requests; if one source is slow it may delay the full response.
Synergies with Other MCP Servers
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 |
Changelog
See CHANGELOG.md
License
MIT License โ see LICENSE
Author
Hayal Oezkan ยท malkreide
Credits & Related Projects
- HackerNews API: hacker-news.firebaseio.com โ Y Combinator / Firebase
- arXiv API: export.arxiv.org โ Cornell University / arXiv.org
- Lobste.rs API: lobste.rs โ community-run
- GitHub API: api.github.com โ GitHub / Microsoft
- Protocol: Model Context Protocol โ Anthropic / Linux Foundation
- Related: news-monitor-mcp โ Swiss institutional media monitoring
- Portfolio: Swiss Public Data MCP Portfolio
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hn_tech_signal_mcp-0.1.0.tar.gz.
File metadata
- Download URL: hn_tech_signal_mcp-0.1.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
462b5aecd3f82c8c5dd1c681caea22243c2817f07e39014b865a249e15c0b883
|
|
| MD5 |
d1246e7063394ee556d18428aae09c74
|
|
| BLAKE2b-256 |
14085545b89f5b5fb8565a8a754a44bd21a045b9cd5b02c322bc6f479c4cf248
|
Provenance
The following attestation bundles were made for hn_tech_signal_mcp-0.1.0.tar.gz:
Publisher:
publish.yml on malkreide/hn-tech-signal-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hn_tech_signal_mcp-0.1.0.tar.gz -
Subject digest:
462b5aecd3f82c8c5dd1c681caea22243c2817f07e39014b865a249e15c0b883 - Sigstore transparency entry: 1155177969
- Sigstore integration time:
-
Permalink:
malkreide/hn-tech-signal-mcp@34d023fb006648dc6be9633101f76d61c2b11f59 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@34d023fb006648dc6be9633101f76d61c2b11f59 -
Trigger Event:
release
-
Statement type:
File details
Details for the file hn_tech_signal_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: hn_tech_signal_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
761ea1a36caa3f8439388e30d47698700fb778645b701530f39da823d7ab80c6
|
|
| MD5 |
12d4a6f8ffdb120d4c34ed1d4a655c7c
|
|
| BLAKE2b-256 |
43f97c0e0931cc819980193797269ececcc4b3b31e1273fa4dc73681bd067a79
|
Provenance
The following attestation bundles were made for hn_tech_signal_mcp-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on malkreide/hn-tech-signal-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hn_tech_signal_mcp-0.1.0-py3-none-any.whl -
Subject digest:
761ea1a36caa3f8439388e30d47698700fb778645b701530f39da823d7ab80c6 - Sigstore transparency entry: 1155177986
- Sigstore integration time:
-
Permalink:
malkreide/hn-tech-signal-mcp@34d023fb006648dc6be9633101f76d61c2b11f59 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@34d023fb006648dc6be9633101f76d61c2b11f59 -
Trigger Event:
release
-
Statement type: