{
"mcpServers": {
"Podbean MCP": {
"env": {
"PODBEAN_CLIENT_ID": "your_client_id",
"PODBEAN_CLIENT_SECRET": "your_client_secret"
},
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/full/path/to/PodbeanMCP/server.py"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for managing your podcast through the Podbean API.
Is it safe?
No known CVEs for @amurshak/podbeanmcp.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 311 days ago.
Will it work with my client?
Transport: stdio, sse. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for PodbeanMCP and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for managing your podcast through the Podbean API.
This MCP server connects any MCP-compatible AI assistant to the Podbean API. Whether you're using Cline (the IDE MCP Client), Claude Desktop, or any other MCP client, you can now manage your podcasts, episodes, and analytics through natural conversation!
To install Podbean Podcast Manager for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @amurshak/podbeanmcp --client claude
Grab the code:
git clone <repository-url>
cd PodbeanMCP
Set up a virtual environment using the super-speedy uv tool:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install the package and its dependencies:
# Using uv (faster)
uv pip install -e .
Or if you prefer traditional pip:
pip install -e .
This will install all dependencies from the pyproject.toml file, including:
Create a .env file with your secret Podbean powers:
PODBEAN_CLIENT_ID=your_client_id
PODBEAN_CLIENT_SECRET=your_client_secret
The recommended way to use this MCP server is to configure it directly in your cline_mcp_settings.json file. This allows the Cline IDE MCP Client to automatically start the server when needed.
Locate your cline_mcp_settings.json file. This file is used by Cline IDE to configure MCP servers. Refer to the Cline IDE documentation for the exact location of this file on your system.
Add the Podbean MCP server configuration to the "mcpServers" object:
{
"mcpServers": {
"Podbean MCP": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/full/path/to/PodbeanMCP/server.py"
],
"env": {
"PODBEAN_CLIENT_ID": "your_client_id",
"PODBEAN_CLIENT_SECRET": "your_client_secret"
}
}
}
}