pocketcasts-mcp
Provides tools to search, browse, and manage your Pocket Casts podcast library, including searching podcasts, retrieving episodes, managing playback status, and more.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pocketcasts-mcpsearch for a podcast about science"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pocket Casts MCP Server
An MCP (Model Context Protocol) server that connects to the Pocket Casts podcast app, allowing AI assistants to search, browse, and manage your podcast library.
Note: This uses the unofficial Pocket Casts API. There is no official public API — this server relies on reverse-engineered endpoints used by community projects.
Prerequisites
Node.js 18+
A Pocket Casts account (email & password)
Installation
Remote (npx — no clone required)
Run the server directly without installing anything locally:
npx pocketcasts-mcpClaude Desktop
Add to your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"pocketcasts": {
"command": "npx",
"args": ["-y", "pocketcasts-mcp"],
"env": {
"POCKETCASTS_EMAIL": "your@email.com",
"POCKETCASTS_PASSWORD": "your-password"
}
}
}
}Claude Code
claude mcp add pocketcasts \
-e POCKETCASTS_EMAIL=your@email.com \
-e POCKETCASTS_PASSWORD=your-password \
-s user \
-- npx -y pocketcasts-mcpThe -s user flag makes the server available across all your projects. Omit it to scope to the current project only.
Global install (alternative)
Install once, then reference the command directly:
npm install -g pocketcasts-mcpThen use pocketcasts-mcp as the command instead of npx -y pocketcasts-mcp in the configs above.
Local (from source)
Clone and build the server yourself:
git clone https://github.com/essoen/PocketCasts-mcp.git
cd PocketCasts-mcp
npm install
npm run buildClaude Desktop
{
"mcpServers": {
"pocketcasts": {
"command": "node",
"args": ["/absolute/path/to/PocketCasts-mcp/dist/index.js"],
"env": {
"POCKETCASTS_EMAIL": "your@email.com",
"POCKETCASTS_PASSWORD": "your-password"
}
}
}
}Claude Code
claude mcp add pocketcasts \
-e POCKETCASTS_EMAIL=your@email.com \
-e POCKETCASTS_PASSWORD=your-password \
-s user \
-- node /absolute/path/to/PocketCasts-mcp/dist/index.jsCursor / VS Code
Add to .cursor/mcp.json or .vscode/mcp.json in your project:
{
"mcpServers": {
"pocketcasts": {
"command": "node",
"args": ["/absolute/path/to/PocketCasts-mcp/dist/index.js"],
"env": {
"POCKETCASTS_EMAIL": "your@email.com",
"POCKETCASTS_PASSWORD": "your-password"
}
}
}
}Or with npx (no local clone needed):
{
"mcpServers": {
"pocketcasts": {
"command": "npx",
"args": ["-y", "pocketcasts-mcp"],
"env": {
"POCKETCASTS_EMAIL": "your@email.com",
"POCKETCASTS_PASSWORD": "your-password"
}
}
}
}Configuration
The server requires two environment variables:
Variable | Description |
| Your Pocket Casts account email |
| Your Pocket Casts account password |
These can be set via:
The
envblock in your MCP client config (recommended)Your shell profile (
~/.bashrc,~/.zshrc, etc.)A
.envfile in your project (if your MCP client supports it)
Security: Never commit files containing your credentials to version control. If using a
.envfile, ensure it is listed in.gitignore. Avoid storing passwords in config files that may be synced or backed up to cloud services.
Available Tools
Discovery
Tool | Description |
| Search for podcasts by keyword or title |
| Get top-ranked podcasts |
| Get currently trending podcasts |
| Get featured podcasts |
Library
Tool | Description |
| List all subscribed podcasts |
Episodes
Tool | Description |
| List episodes for a podcast (sorted newest or oldest) |
| Get show notes for an episode |
| Get new episodes from subscriptions |
| Get partially-listened episodes |
| Get starred/favorited episodes |
| Get listening history (most recent 100) |
Playback Management
Tool | Description |
| Mark episode as unplayed, in_progress, or completed |
| Set playback resume position (in seconds) |
| Star or unstar an episode |
Development
git clone https://github.com/essoen/PocketCasts-mcp.git
cd PocketCasts-mcp
npm install
npm run build
npm startAPI Reference
This server uses the unofficial Pocket Casts API at api.pocketcasts.com. Endpoints were reverse-engineered by the community. See furgoose/Pocket-Casts for the original documentation.
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/essoen/PocketCasts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server