npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

podcastindex-mcp

v0.2.0

Published

MCP server for the Podcast Index API — search podcasts, track appearances, monitor trending shows, and check feed health.

Downloads

343

Readme

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.

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. | | 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. | | 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. | | recent_episodes | Get the most recently published episodes across the entire index. | | categories_list | Get the full list of Podcast Index categories and their IDs. |

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.


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