Server data from the Official MCP Registry
Search Entra.Chat podcast transcripts — Merill Fernando's Microsoft Entra podcast on YouTube
Search Entra.Chat podcast transcripts — Merill Fernando's Microsoft Entra podcast on YouTube
This is a well-architected MCP server for searching Entra.Chat podcast transcripts. The codebase demonstrates good security practices: optional API key handling, no hardcoded secrets, secure dependency management, and proper input validation. The server's permissions (network HTTP for GitHub releases and OpenAI, file I/O for local caching, env vars for optional API key) are proportionate to its stated purpose. No malicious patterns, credential handling issues, or dangerous code execution flows were detected. Minor code quality observations exist but do not impact the security posture. Supply chain analysis found 3 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-darrenjrobinson-entra-news-podcast": {
"args": [
"-y",
"entra-news-podcast-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP (Model Context Protocol) server for searching transcripts of Entra.Chat — Merill Fernando's Microsoft Entra podcast on YouTube. Ask your AI assistant about Entra ID features, community tools, and identity topics discussed on the show, and get answers with timestamped YouTube links that jump straight to the relevant moment.
Companion to entra-news-mcp (the written Entra.News newsletter archive) and microsoft-ai-roundup-mcp.
~/.entra-news-podcast-mcp/). Updates are checked weekly.youtube.com/watch?v=...&t=... so you can hear the discussion in context.Requires Node.js 22+ (uses the built-in node:sqlite — no native dependencies).
Add to claude_desktop_config.json:
{
"mcpServers": {
"entra-podcasts": {
"command": "npx",
"args": ["-y", "entra-news-podcast-mcp"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}
The OPENAI_API_KEY is optional — it enables semantic/hybrid search (embedding the query costs a fraction of a cent). Without it, BM25 keyword search is used.
claude mcp add entra-podcasts -- npx -y entra-news-podcast-mcp
{
"servers": {
"entra-podcasts": {
"command": "npx",
"args": ["-y", "entra-news-podcast-mcp"]
}
}
}
{
"mcpServers": {
"entra-podcasts": {
"command": "npx",
"args": ["-y", "entra-news-podcast-mcp"]
}
}
}
| Tool | Description |
|---|---|
search_entra_podcasts | Search all episode transcripts. Modes: hybrid (default, BM25 + semantic via RRF), semantic, keyword. Results include episode, guests, and timestamped YouTube links. |
get_episode | Full episode by video_id, episode_number, or date — metadata, guests with profile links, chapters with timestamped links, and the complete transcript with [mm:ss] markers. |
list_episodes | Browse the archive; filter by year, month, and/or guest name. |
list_guests | Directory of all podcast guests with profile links, appearance counts, and latest appearance. |
get_guest | One guest by name: profile links and every episode they appeared on. |
find_tool_mentions | Community tools discussed on the show, with timestamped links to hear the discussion. |
| Source | Entra.Chat playlist on YouTube (@merillx) |
| Transcripts | YouTube captions (uploaded captions preferred, auto-generated otherwise) |
| Refresh | Weekly GitHub Action → new db-* release |
| Local cache | ~/.entra-news-podcast-mcp/ (%USERPROFILE%\.entra-news-podcast-mcp\ on Windows) — update check at most every 7 days; delete the folder to force a fresh download |
| Runtime override | Set ENTRA_PODCAST_DB_PATH to use a local database file instead |
npm install
npm run build
# Ingest (requires yt-dlp on PATH: pipx install yt-dlp / winget install yt-dlp)
node dist/scripts/ingest.js --limit 2 # test with 2 videos
node dist/scripts/ingest.js # full playlist backfill
node dist/scripts/ingest.js --incremental # only new videos
node dist/scripts/ingest.js --video <id> # one video (re-ingests)
node dist/scripts/ingest.js --reextract # rebuild guests + tool mentions from stored
# data (no network) — after editing
# guest-overrides.json or known-tools.ts
node dist/scripts/ingest.js --embed-missing # embed chunks that have no embedding yet
# (needs OPENAI_API_KEY; no YouTube access)
# Run the server against a local DB
ENTRA_PODCAST_DB_PATH=./entra-news-podcasts.db npx @modelcontextprotocol/inspector node dist/src/index.js
Set OPENAI_API_KEY during ingest to generate embeddings (semantic search); without it the ingest still completes and BM25 keyword search works.
Guests are extracted heuristically from video titles/descriptions. Episodes the heuristics miss are listed at the end of each ingest run — correct them in scripts/lib/guest-overrides.json (keyed by video_id, entries fully replace extraction for that video) and apply with node dist/scripts/ingest.js --reextract (no re-download needed).
YouTube sometimes blocks caption downloads from datacenter IPs (BOT_BLOCKED in the workflow log). Consumers are unaffected — the last-good release stays latest. To refresh manually from a residential IP:
node dist/scripts/ingest.js --incremental
gh release create "db-$(date -u +%Y.%m.%d)-9999" \
--repo darrenjrobinson/EntraNewsPodcastMCPServer \
--title "Database Update (manual)" --latest \
./entra-news-podcasts.db
Code releases (v* tags) publish to npm (Trusted Publishing / OIDC, no tokens) and the MCP Registry (io.github.darrenjrobinson/entra-news-podcast) via .github/workflows/publish-mcp.yml:
version in package.json and both version fields in server.json (CI enforces lockstep).git tag v0.x.y && git push origin main v0.x.y.Database releases (db-* tags) are produced by the weekly workflow and never trigger an npm publish.
MIT © Darren Robinson
Be the first to review this server!
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.