conorbronsdon/podcastindex-mcp

🎙️ Podcasts🟢 Verified Active
0 Views
0 Installs

📇 ☁️ - Search the Podcast Index: podcasts, episodes, guest appearances by person, trending shows, and feed health.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "conorbronsdon-podcastindex-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "conorbronsdon-podcastindex-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Podcast Index MCP Server

Connect Claude to the Podcast Index API. Search podcasts, track appearances, monitor trends.

GitHub stars License: MIT npm version Podcast X


Demo: search_by_person tool call and response

The results shown in the demo above are sample data, not real Podcast Index responses.

podcastindex-mcp MCP server

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

Prerequisites

Installation

git clone https://github.com/conorbronsdon/podcastindex-mcp.git
cd podcastindex-mcp
npm install
npm run build

Configuration

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.

ToolDescription
search_by_personSearch for episodes where a person appeared as host or guest. Returns matches across all indexed podcasts.
search_by_termFull-text search across all podcasts by topic, show name, or keyword.
search_by_titleSearch for podcasts by title.
podcast_by_feed_urlLook up a podcast by RSS feed URL. Returns feed ID, iTunes ID, categories, last update, and feed health.
podcast_by_feed_idLook up a podcast by its Podcast Index feed ID. Returns full metadata.
podcast_by_itunes_idLook up a podcast by its Apple Podcasts (iTunes) ID.
podcast_by_guidLook up a podcast by its podcast:guid tag value.
trending_podcastsGet currently trending podcasts, with optional language and category filters.
episodes_by_feed_idGet episodes for a specific podcast by feed ID.
episode_by_idLook up a single episode by its Podcast Index episode ID.
episodes_liveGet episodes that are currently live (actively streaming).
recent_episodesGet the most recently published episodes across the entire index.
recent_feedsGet the most recently updated podcast feeds across the index.
recent_new_feedsGet podcast feeds newly added to the index.
value_by_feed_idGet value4value (lightning payment) info for a podcast by feed ID.
value_by_feed_urlGet value4value (lightning payment) info for a podcast by feed URL.
categories_listGet the full list of Podcast Index categories and their IDs.
stats_currentGet 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 build

Watch for changes during development:

npm run watch

Adding a new tool

  1. Add the API method to src/api-client.ts
  2. Add type guard and argument types to src/types.ts
  3. Add the tool definition and handler to src/tool-handlers.ts
  4. Rebuild 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

Related MCP Servers

conorbronsdon/op3-mcp

📇 ☁️ - Podcast analytics from OP3, the Open Podcast Prefix Project: downloads over time, listener geography, app share, and per-episode breakdowns. Read-only by design.

🎙️ Podcasts0 views
conorbronsdon/Transistor-MCP

📇 ☁️ - Manage Transistor.fm podcasts: episodes, analytics, download summaries, episode comparisons, transcripts, and webhooks.

🎙️ Podcasts0 views
modelcontextprotocol/server-gitlabVerified

📇 ☁️ 🏠 - GitLab platform integration for project management and CI/CD operations

🔄 Version Control2 views
Moxie-Docs-MCP★ Featured

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

💻 Developer Tools2 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 9:16:32 PM

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.