PodMaster
Allows importing podcast feeds for transcription and indexing.
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., "@PodMastersearch my podcasts for mentions of artificial intelligence"
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.
PodMaster
Local podcast transcription, embedding, and semantic search with an MCP server for AI assistant integration. All processing runs on your machine.
Features
Local transcription via faster-whisper (CPU or Metal/CUDA)
Semantic search with sentence embeddings + SQLite vector index
RSS feed import
MCP server for Claude Code, Cursor, and other AI assistants
REST API for GUI integrations
Full CLI
Related MCP server: LocalNest MCP
Install
pip install podmaster
pip install "podmaster[mcp]"
pip install "podmaster[api]"
pip install "podmaster[all]"Requires Python 3.11+.
Quick Start
podmaster add "https://feeds.example.com/podcast.xml"
podmaster list podcasts
podmaster list episodes
podmaster transcribe --episode <episode-id>
podmaster search "what did they say about AI agents"
podmaster mcpModels
PodMaster ships a small, vetted set of on-device models. Run podmaster models for the full list.
Transcription (faster-whisper)
Model | Params | When to use |
| 74M | Fast bulk indexing |
| 244M | Best accuracy/speed balance |
| 769M | Higher accuracy, ~3x slower |
| 1550M | Best accuracy, archival quality |
| 756M | Near large-v3 at 2x speed (English) |
Embedding (sentence-transformers)
Model | Dim | When to use |
| 384 | Fast, proven baseline |
| 384 | Higher quality, drop-in swap |
| 768 | Highest quality (needs re-index on switch) |
MCP Integration
{
"mcpServers": {
"podmaster": {
"command": "podmaster",
"args": ["mcp"]
}
}
}Tools: transcribe_audio, search_library, get_episode_transcript, list_podcasts, list_episodes.
Development
git clone https://github.com/summitmktg/podmaster
cd podmaster
pip install -e ".[all,dev]"
pytest tests/License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
MCP server for structured access to Lenny Rachitsky podcast transcripts. For content creators.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI assistants to perform semantic searches over local document collections using multi-context organization and automatic OCR. It supports various file formats including PDF, DOCX, and images, ensuring all data processing remains local and private.8MIT
- AlicenseBqualityCmaintenanceA local-first MCP server that provides AI agents with safe codebase access through file discovery, hybrid lexical-semantic search, and project introspection. It features durable local memory and semantic indexing while keeping all data and processing entirely on your local machine.7447 npm6MIT
- AlicenseNot gradedqualityBmaintenanceA local MCP server that provides AI coding assistants with semantic search capabilities over codebases. It indexes code using local embeddings and exposes tools for efficient code retrieval, saving tokens and improving response quality.31 npm4MIT
- FlicenseNot gradedqualityDmaintenanceLocal MCP server that provides semantic search (RAG) over code repositories, enabling AI clients like Claude and Gemini to access project context without manual re-upload.-