episodes

Pack: podcastindex · Endpoint: https://gateway.pipeworx.io/podcastindex/mcp

List recent episodes for a podcast by its Podcast Index feed ID. Returns episode title, description, publish date, duration, audio URL, and episode/season numbers. Example: episodes({ feed_id: 920666, max: 10 })

Parameters

NameTypeRequiredDescription
feed_idnumberyesPodcast Index feed ID (from search_podcasts or trending podcasts results)
maxnumbernoMaximum number of episodes to return (default 10, max 100)

Example call

Arguments

{
  "feed_id": 920666,
  "max": 10,
  "_apiKey": "your-podcastindex-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/podcastindex/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"episodes","arguments":{"feed_id":920666,"max":10,"_apiKey":"your-podcastindex-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('episodes', {
  "feed_id": 920666,
  "max": 10,
  "_apiKey": "your-podcastindex-api-key"
});

More examples

{
  "feed_id": 920666,
  "_apiKey": "your-podcastindex-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "podcastindex": {
      "url": "https://gateway.pipeworx.io/podcastindex/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026