Podcast Index MCP Server
This is a read-only MCP server that connects Claude to the Podcast Index API, enabling podcast discovery, research, and monitoring. Available capabilities include:
Search by person (
search_by_person): Find episodes where a specific person appeared as a host or guest across all indexed podcasts.Full-text search (
search_by_term): Search all podcasts by topic, show name, or keyword, with optional explicit content filtering.Look up by feed URL (
podcast_by_feed_url): Retrieve metadata (feed ID, iTunes ID, categories, last update, feed health) for any podcast RSS feed.Look up by feed ID (
podcast_by_feed_id): Get full podcast metadata using a Podcast Index feed ID.Look up by iTunes ID or podcast:guid: Additional lookup methods for finding specific podcasts.
Trending podcasts (
trending_podcasts): Browse currently trending podcasts, filterable by language and category.Episodes for a podcast (
episodes_by_feed_id): Retrieve episodes for a specific podcast by feed ID, with optional time-based filtering.Recent episodes (
recent_episodes): See the most recently published episodes across the entire Podcast Index.List categories (
categories_list): Retrieve the full list of Podcast Index categories and their IDs.
All tools are read-only, so no write-consent prompts are triggered.
Provides tools for searching podcasts, tracking appearances, and monitoring trends through the Podcast Index API.
Podcast Index MCP Server
Connect Claude to the Podcast Index API. Search podcasts, track appearances, monitor trends.

The results shown in the demo above are sample data, not real Podcast Index responses.
About
Built and maintained by Conor Bronsdon for the Chain of Thought podcast production workflow, where it surfaces guest appearances and checks feed health during research. Conor hosts Chain of Thought, a show about AI infrastructure and how practitioners actually build with it. More tools for creators live in ai-tools-for-creators. Find Conor on X at @ConorBronsdon.
Sibling MCP servers:
Transistor-MCP: manage podcast episodes, analytics, and transcripts on Transistor.fm
substack-mcp: read posts and manage Substack drafts
Related MCP server: ls-apis-mcp
Prerequisites
Node.js 18+
Free Podcast Index API credentials -- get them at api.podcastindex.org
Installation
git clone https://github.com/conorbronsdon/podcastindex-mcp.git
cd podcastindex-mcp
npm install
npm run buildConfiguration
Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"podcastindex": {
"command": "node",
"args": ["/path/to/podcastindex-mcp/build/index.js"],
"env": {
"PODCASTINDEX_API_KEY": "your-api-key",
"PODCASTINDEX_API_SECRET": "your-api-secret"
}
}
}
}Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"podcastindex": {
"command": "node",
"args": ["/path/to/podcastindex-mcp/build/index.js"],
"env": {
"PODCASTINDEX_API_KEY": "your-api-key",
"PODCASTINDEX_API_SECRET": "your-api-secret"
}
}
}
}Tools
This server is entirely read-only: every tool declares the MCP tool annotation readOnlyHint: true, so clients know no call mutates anything and can skip write-consent prompts.
Tool | Description |
| Search for episodes where a person appeared as host or guest. Returns matches across all indexed podcasts. |
| Full-text search across all podcasts by topic, show name, or keyword. |
| Search for podcasts by title. |
| Look up a podcast by RSS feed URL. Returns feed ID, iTunes ID, categories, last update, and feed health. |
| Look up a podcast by its Podcast Index feed ID. Returns full metadata. |
| Look up a podcast by its Apple Podcasts (iTunes) ID. |
| Look up a podcast by its |
| Get currently trending podcasts, with optional language and category filters. |
| Get episodes for a specific podcast by feed ID. |
| Look up a single episode by its Podcast Index episode ID. |
| Get episodes that are currently live (actively streaming). |
| Get the most recently published episodes across the entire index. |
| Get the most recently updated podcast feeds across the index. |
| Get podcast feeds newly added to the index. |
| Get value4value (lightning payment) info for a podcast by feed ID. |
| Get value4value (lightning payment) info for a podcast by feed URL. |
| Get the full list of Podcast Index categories and their IDs. |
| Get current aggregate statistics for the Podcast Index. |
Typed errors
API failures are mapped to a typed error hierarchy (PodcastIndexError base, with AuthenticationError, RateLimitError, ValidationError, NotFoundError, and ServerError subclasses keyed off HTTP status) in src/errors.ts. Every tool call still returns the same isError: true response shape on failure — the typed hierarchy just makes the message specific to what went wrong (bad credentials vs. rate limiting vs. a malformed request, etc.) instead of a single generic "API error" string.
Example Prompts
Once configured, you can ask Claude things like:
"Search Podcast Index for all episodes featuring Satya Nadella as a guest"
"What are the trending technology podcasts right now?"
"Look up the feed health for https://feeds.transistor.fm/chain-of-thought and list the last 5 episodes"
Development
Build the project:
npm run buildWatch for changes during development:
npm run watchAdding a new tool
Add the API method to
src/api-client.tsAdd type guard and argument types to
src/types.tsAdd the tool definition and handler to
src/tool-handlers.tsRebuild with
npm run build
Contributing
Issues and pull requests are welcome. If there is a Podcast Index endpoint you want exposed as a tool, open an issue describing the use case, or follow the steps above and open a PR. Bug reports should include the tool name and the arguments you passed.
Acknowledgments
This server exists because of the free, open Podcast Index API and its documentation — all tools here are thin wrappers over that API.
The expanded endpoint coverage and typed-error design in this release were inspired by Craig Lawton's podcastindex-mcp-server, an earlier MCP server for the same API. No code from that project was used here; this server's implementation, tool schemas, and error-handling code were written independently against the official API docs.
Disclaimer
All views, opinions, and statements expressed on this account are solely my own and are made in my personal capacity. They do not reflect, and should not be construed as reflecting, the views, positions, or policies of Modular. This account is not affiliated with, authorized by, or endorsed by Modular in any way.
License
MIT
Maintenance
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/conorbronsdon/podcastindex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server