Entra.Chat Podcast MCP Server

Entra.Chat Podcast MCP Server

Enables AI assistants to search and retrieve transcripts from the Entra.Chat podcast about Microsoft Entra ID, with timestamped YouTube links and guest information.

Category
Visit Server

README

Entra.Chat Podcast MCP Server

npm version MIT License

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.

How it works

  • Zero per-user infrastructure. Install via NPX; the transcript database (SQLite) is downloaded automatically from this repo's GitHub Releases on first run and cached locally (~/.entra-news-podcast-mcp/). Updates are checked weekly.
  • Hybrid retrieval. BM25 keyword search (in-memory inverted index with Porter stemming — ideal for exact names like "PIM for Groups" or "Maester" in messy spoken-word transcripts) fused with OpenAI semantic vector search via Reciprocal Rank Fusion. No API key? Keyword search works out of the box.
  • Timestamped deep links. Every search result links to youtube.com/watch?v=...&t=... so you can hear the discussion in context.
  • Guest knowledge. Guests are extracted per episode with their profile links (LinkedIn, Twitter/X, GitHub, Bluesky) — ask "which episodes was X on?" or "who has been on the show?".
  • Fresh weekly. A GitHub Action re-ingests the playlist every week and publishes an updated database release.

Installation

Requires Node.js 22+ (uses the built-in node:sqlite — no native dependencies).

Claude Desktop

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 Code

claude mcp add entra-podcasts -- npx -y entra-news-podcast-mcp

VS Code (GitHub Copilot)

{
  "servers": {
    "entra-podcasts": {
      "command": "npx",
      "args": ["-y", "entra-news-podcast-mcp"]
    }
  }
}

Cursor

{
  "mcpServers": {
    "entra-podcasts": {
      "command": "npx",
      "args": ["-y", "entra-news-podcast-mcp"]
    }
  }
}

Tools

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.

Example prompts

  • "What did Merill and his guests say about PIM for Groups?"
  • "Which episodes has Jane Doe been on? What's her LinkedIn?"
  • "Find where Maester was discussed and give me the YouTube timestamp."
  • "List the Entra.Chat episodes from March 2026."

Data & freshness

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

Development

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.

Guest extraction overrides

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).

Manual database refresh (if YouTube blocks CI)

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

Release process (maintainer)

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:

  1. Bump version in package.json and both version fields in server.json (CI enforces lockstep).
  2. Commit, then 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.

License

MIT © Darren Robinson

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured