MCP Podcast Scraper

MCP Podcast Scraper

An MCP server that scrapes and transcribes podcast episodes from YouTube or RSS feeds using Deepgram's Nova-2 model. It allows users to track podcasts for new episodes, manage transcripts, and generate personalized summaries through Claude.

Category
Visit Server

README

MCP Podcast Scraper

An MCP (Model Context Protocol) server that scrapes and transcribes podcast episodes. Designed to work with Claude Code or Claude Desktop - you provide the podcast, the MCP transcribes it, and Claude summarizes it.

What It Does

  • šŸŽ™ļø Scrapes podcasts from YouTube videos or RSS feeds
  • šŸŽÆ Transcribes audio using Deepgram's fast Nova-2 model
  • šŸ“ Organizes files by podcast name and episode date
  • šŸ”„ Tracks podcasts for new episodes
  • ā­ļø Skips duplicates - won't re-scrape already processed episodes
  • šŸ“‹ Finds incomplete work - lists episodes that need summarization
  • āœļø Custom summary prompts - customize how Claude summarizes for your needs

How It Works

You: "Check for new episodes and summarize them"
         ↓
Claude: Calls check_new_episodes() → Finds new episodes
         ↓
Claude: Calls scrape_podcast() → Downloads & transcribes
         ↓
Claude: Calls get_summary_prompt() → Reads your custom instructions
         ↓
Claude: Calls get_transcript() → Reads the transcript
         ↓
Claude: Summarizes following your prompt
         ↓
Claude: Calls save_summary() → Saves the .md file
         ↓
Done! transcript.md + summary.md saved

Installation Guide

Step 1: Prerequisites

Install required system tools (macOS):

# Install Homebrew if you don't have it
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# Install yt-dlp (for YouTube) and ffmpeg (for audio)
brew install yt-dlp ffmpeg

Step 2: Clone & Build

# Clone the repository
git clone https://github.com/wkoleilat-happytitan/mcp-podcast-scraper.git
cd mcp-podcast-scraper

# Install dependencies
npm install

# Build
npm run build

Step 3: Get a Deepgram API Key

  1. Go to https://console.deepgram.com/
  2. Sign up (free tier includes $200 credit - enough for ~300 hours of audio)
  3. Create an API key
  4. Copy the key

Step 4: Configure

Copy the example config file and add your API key:

# Copy the example config
cp config.example.json config.json

# Edit config.json and add your Deepgram API key

Your config.json should look like:

{
  "outputDirectory": "./podcasts",
  "deepgramApiKey": "YOUR_ACTUAL_DEEPGRAM_API_KEY",
  "tempDirectory": "./temp"
}

āš ļø Important: Never commit config.json to git - it contains your API key! The .gitignore already excludes it.

Step 5: Add to Claude Code

Add this to your Claude Code MCP settings (~/.cursor/mcp.json or via Settings → MCP):

{
  "mcpServers": {
    "podcast-scraper": {
      "command": "node",
      "args": ["/FULL/PATH/TO/mcp-podcast-scraper/dist/index.js"]
    }
  }
}

Important: Replace /FULL/PATH/TO/ with the actual path to your installation.

Step 5 (Alternative): Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "podcast-scraper": {
      "command": "node",
      "args": ["/FULL/PATH/TO/mcp-podcast-scraper/dist/index.js"]
    }
  }
}

Then restart Claude Desktop.


File Structure

mcp-podcast-scraper/
ā”œā”€ā”€ config.example.json     # Template - copy to config.json
ā”œā”€ā”€ config.json             # Your config (git-ignored, contains API key)
ā”œā”€ā”€ tracking.example.json   # Example tracking file
ā”œā”€ā”€ tracking.json           # Your tracked podcasts (git-ignored)
ā”œā”€ā”€ prompts/
│   └── summary-prompt.md   # Customize how Claude summarizes (editable)
ā”œā”€ā”€ podcasts/               # Your transcripts & summaries (git-ignored)
ā”œā”€ā”€ src/                    # Source code
ā”œā”€ā”€ dist/                   # Compiled code (git-ignored)
└── node_modules/           # Dependencies (git-ignored)

Usage Examples

Scrape a Specific Episode

"Scrape this YouTube podcast: https://youtube.com/watch?v=..."

"Find and scrape the latest Lex Fridman episode"

Track Podcasts for New Episodes

"Track the Huberman Lab podcast: https://feeds.megaphone.fm/hubermanlab"

"Check my tracked podcasts for new episodes"

"List all podcasts I'm tracking"

Find Incomplete Work

"Show me episodes that need summaries"

"List incomplete episodes"

MCP Tools Reference

Tool Description
scrape_podcast Scrape & transcribe an episode. Returns file path and preview.
get_transcript Read the full transcript of a scraped episode.
get_summary_prompt Get your custom summarization instructions.
save_summary Save your generated summary to a markdown file.
check_new_episodes Check tracked podcasts for new (unscraped) episodes.
list_incomplete Find episodes with transcripts but no summaries.
search_podcast Search YouTube or parse RSS feeds to find episodes.
add_tracking Add a podcast RSS feed to your tracking list.
list_tracking List all podcasts you're tracking.
remove_tracking Remove a podcast from your tracking list.

Workflow

Typical Session

  1. Check for new episodes:

    "Check my tracked podcasts for new episodes"
    
  2. Scrape each new episode:

    "Scrape the first one"
    
  3. Get transcript and summarize:

    "Get the transcript and summarize it"
    
  4. Repeat for remaining episodes

Resume Incomplete Work

If you stopped mid-session:

"Show me episodes that need summaries"

Then for each incomplete episode:

"Get the transcript for [episode] and summarize it"

Output Structure

Files are organized by podcast and episode:

podcasts/
ā”œā”€ā”€ Huberman Lab/
│   ā”œā”€ā”€ 2024-12-10 - Episode Title/
│   │   ā”œā”€ā”€ transcript.md
│   │   └── summary.md
│   └── 2024-12-05 - Another Episode/
│       ā”œā”€ā”€ transcript.md
│       └── summary.md
└── Lex Fridman Podcast/
    └── 2024-12-08 - Guest Name/
        ā”œā”€ā”€ transcript.md
        └── summary.md

Configuration Options

Option Description Default
outputDirectory Where to save transcripts and summaries. Can be relative or absolute path. ./podcasts
deepgramApiKey Your Deepgram API key for transcription Required
tempDirectory Temporary directory for audio files (auto-cleaned on startup) ./temp

Environment variables (optional alternative to config.json):

  • DEEPGRAM_API_KEY
  • OUTPUT_DIRECTORY
  • TEMP_DIRECTORY

Customizing Summary Prompts

Control how Claude summarizes your podcasts by editing prompts/summary-prompt.md.

The default prompt is tailored for Product Managers and includes:

  • šŸŽÆ Episode Overview
  • šŸ’” Key Insights for Product Managers
  • 🧠 Mental Models & Frameworks
  • šŸ“ˆ Personal Development Takeaways
  • āœ… Action Items
  • šŸ’¬ Notable Quotes
  • šŸ”— Related Topics

Customize for Your Needs

Edit prompts/summary-prompt.md to:

  • Change the target audience (engineer, designer, founder, etc.)
  • Add/remove sections
  • Adjust the summary length
  • Focus on specific topics
  • Change the formatting style

Example customizations:

For Engineers:

Focus on:
- Technical concepts and architecture decisions
- Implementation details worth noting
- Tools and technologies mentioned
- Code patterns and best practices

For Founders:

Focus on:
- Business strategy insights
- Fundraising advice
- Growth tactics
- Leadership lessons
- Mistakes to avoid

Claude will read this prompt before generating each summary, ensuring consistent, personalized output.


Development

# Watch mode (auto-rebuild on changes)
npm run dev

# Build once
npm run build

# Run MCP server directly
npm start

# Clean build artifacts and temp files
npm run clean

# Test with MCP Inspector (interactive UI)
npx @modelcontextprotocol/inspector node dist/index.js

Troubleshooting

"ffprobe and ffmpeg not found"

brew install ffmpeg

"Deepgram API key not configured"

Make sure you've copied config.example.json to config.json and added your API key.

MCP server not connecting

  1. Run npm run build
  2. Verify path in MCP config is correct
  3. Restart Claude Code/Desktop

"YouTube URLs not supported for tracking"

Use RSS feeds instead. Find podcast RSS feeds at https://getrssfeed.com/


License

MIT

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
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
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
Qdrant Server

Qdrant Server

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

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
E2B

E2B

Using MCP to run code via e2b.

Official
Featured