Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Search the Podcast Index: podcasts, episodes, person appearances, trending, feed health.

README.md

<div align="center">

Podcast Index MCP Server

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

![GitHub stars](https://github.com/conorbronsdon/podcastindex-mcp/stargazers) ![License: MIT](LICENSE) ![npm version](https://www.npmjs.com/package/podcastindex-mcp) ![Podcast](https://chainofthought.show/?utm_source=github&utm_medium=referral&utm_campaign=repo-readme&utm_content=podcastindex-mcp) ![X](https://x.com/ConorBronsdon)

</div>

---

!Demo: search_by_person tool call and response

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

<a href="https://glama.ai/mcp/servers/conorbronsdon/podcastindex-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/conorbronsdon/podcastindex-mcp/badge" alt="podcastindex-mcp MCP server" /> </a>

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.

| Tool | Description | |------|-------------| | search_by_person | Search for episodes where a person appeared as host or guest. Returns matches across all indexed podcasts. | | search_by_term | Full-text search across all podcasts by topic, show name, or keyword. | | search_by_title | Search for podcasts by title. | | podcast_by_feed_url | Look up a podcast by RSS feed URL. Returns feed ID, iTunes ID, categories, last update, and feed health. | | podcast_by_feed_id | Look up a podcast by its Podcast Index feed ID. Returns full metadata. | | podcast_by_itunes_id | Look up a podcast by its Apple Podcasts (iTunes) ID. | | podcast_by_guid | Look up a podcast by its podcast:guid tag value. | | trending_podcasts | Get currently trending podcasts, with optional language and category filters. | | episodes_by_feed_id | Get episodes for a specific podcast by feed ID. | | episode_by_id | Look up a single episode by its Podcast Index episode ID. | | episodes_live | Get episodes that are currently live (actively streaming). | | recent_episodes | Get the most recently published episodes across the entire index. | | recent_feeds | Get the most recently updated podcast feeds across the index. | | recent_new_feeds | Get podcast feeds newly added to the index. | | value_by_feed_id | Get value4value (lightning payment) info for a podcast by feed ID. | | value_by_feed_url | Get value4value (lightning payment) info for a podcast by feed URL. | | categories_list | Get the full list of Podcast Index categories and their IDs. | | stats_current | 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 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

This is an independent personal project, not affiliated with, sponsored by, or endorsed by any company. All views expressed are my own.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.