Claude Code plugin providing read-only access to your Pocket Casts listening data. Search episodes, view starred content, pull show notes, and explore podcast metadata -- all from within Claude Code.
- List starred episodes
- Browse recent listening history
- Search episodes by title or podcast name
- Get show notes and episode metadata
- Full podcast info lookup
| Command | Description |
|---|---|
starred |
List all starred episodes |
recent [--limit=N] |
Recent listening history (default: 50) |
search <query> |
Search starred and recent episodes |
shownotes <uuid> |
Get show notes for an episode |
episode <uuid> |
Detailed episode metadata |
podcast <uuid> |
Full podcast metadata |
Credentials are resolved in order:
- Project-local:
.claude/pocketcast-skill.local.json - Global config:
~/.config/pocketcast-skill/credentials.json - 1Password: Item named
pocketcasts.com
npm installCreate .claude/pocketcast-skill.local.json:
{
"email": "you@example.com",
"password": "your-pocket-casts-password"
}npx tsx scripts/pocketcast.ts starred
npx tsx scripts/pocketcast.ts search "claude"
npx tsx scripts/pocketcast.ts recent --limit=10