podbeanMCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
podbeanMCP by amurshak | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | MediaProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
podbeanMCP · Summary
MCP server for managing podcasts through the Podbean API with authentication, episodes, and analytics.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
podbeanMCP · Use cases
- Automate podcast publishing and management through AI assistants
- Access podcast analytics and listener data without leaving your chat interface
- Manage multiple podcast accounts and episodes efficiently
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
podbeanMCP · Install
Installation
Via Smithery
npx -y @smithery/cli install @amurshak/podbeanmcp --client claudeManual Installation
git clone <repository-url>
cd PodbeanMCP
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .Create a .env file with your credentials:
PODBEAN_CLIENT_ID=your_client_id
PODBEAN_CLIENT_SECRET=your_client_secretClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything