AI Tech Radar
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AI Tech Radarwhat are the top AI/ML developments this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI Tech Radar
A personal MCP server that aggregates AI/ML/data-engineering developments from free public sources into a ranked, deduplicated, categorized feed, served to Claude as a single custom connector.
Full system design: see docs/architecture.md (or the doc shared alongside
this repo) for the HLD/LLD this code follows section-by-section.
Build status: Day 1 complete — repo skeleton, DB schema, config loading, collector interface. Days 2-7 land incrementally.
Day 1 setup (do this now, in VS Code)
1. Open the folder in VS Code, then open a terminal (Ctrl+`).
2. Create and activate a virtual environment:
python3 -m venv .venv
# macOS/Linux:
source .venv/bin/activate
# Windows (PowerShell):
.venv\Scripts\Activate.ps1VS Code should prompt you to select this as the interpreter — say yes
(or Ctrl+Shift+P → "Python: Select Interpreter" → pick .venv).
3. Install dependencies:
pip install -r requirements.txtNote: sentence-transformers pulls in torch, so this install is a few
hundred MB and can take a couple of minutes — that's expected, and it's
only needed starting Day 3 (dedup/classification), not for today's check.
4. Set up your environment file:
cp .env.example .envDay 1 doesn't strictly require any keys filled in yet (the DB check below
runs with zero credentials), but it's worth creating your GitHub PAT now
since Day 2 needs it immediately — see the comments in .env.example.
Everything else (arXiv, Hugging Face, RSS, Hacker News, Papers With Code)
needs no credentials at all.
5. Run the Day 1 verification script:
python scripts/init_db.pyExpected output:
Using database: sqlite:////.../data/ai_tech_radar.db
Tables created (or already existed).
Seeded/confirmed 11 sources.
Day 1 check complete. ...6. Confirm it actually worked — open data/ai_tech_radar.db with the
SQLite Viewer VS Code extension
(or any SQLite tool) and check the sources table has 11 rows across
rss and api types.
If all of that matches, Day 1 is solid and Day 2 (the actual collectors) builds directly on top of this.
Related MCP server: rss-digest-bot
Project structure
ai-tech-radar/
├── app/
│ ├── config.py # central config — .env + YAML loader
│ ├── database/
│ │ ├── models.py # SQLAlchemy schema
│ │ ├── connection.py # engine/session/init_db()
│ │ └── repository.py # query layer (expands Day 2-5)
│ ├── collectors/
│ │ └── base.py # Collector interface every source implements
│ ├── processing/ # dedup, classify, rank, summarize (Day 3-4)
│ └── mcp/ # MCP server, tools, resources, prompts (Day 5)
├── config/
│ ├── sources.yaml # every RSS feed + API source + GitHub watchlist
│ └── categories.yaml # 8 categories + keyword rules
├── scripts/
│ └── init_db.py # Day 1 verification script
└── .github/workflows/ # ingestion cron (Day 4)Uploading to GitHub
Once you're happy with Day 1 (or whenever you want to push):
git init
git add .
git commit -m "Day 1: repo skeleton, DB schema, config"
git branch -M main
git remote add origin <your-github-repo-url>
git push -u origin main.gitignore already excludes .env and the local data/*.db file, so
neither your secrets nor your local database get pushed.
This server cannot be deployed
Maintenance
Related MCP Connectors
Real-time Claude & Anthropic news from your own Claude — free, no API key.
Agent-first tech news: ranked story clusters, coverage and discussion links, trends, and events.
AI model releases, price changes and deprecations in one feed: chat, embedding, speech, video.
Structured company & industry news for AI agents: typed, dated, source-linked events.
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides personalized Data Engineering learning updates by fetching recent news about DE concepts, patterns, and technologies, while tracking user knowledge to present only new information relevant to their learning journey.3-
- FlicenseAqualityDmaintenanceFetches RSS feeds from tech blogs and news sites and returns AI-generated summaries via Claude.15-
- AlicenseAqualityAmaintenanceAggregates tech and AI signals from HackerNews, arXiv, Lobste.rs, and GitHub into a structured briefing. No authentication required.8MIT
- AlicenseAqualityFmaintenanceAggregates and curates AI/tech news from 12 sources every 6 hours, providing pre-summarized and Opus-curated top picks for vibe coders and AI builders via MCP tools.870MIT