MCP Catalogs
Home

podbeanMCP vs mcp-server-chart

Side-by-side comparison to help you pick between these two MCP servers.

podbeanMCP
by amurshak
mcp-server-chart
by antvis
Stars★ 0★ 4,068
30d uses10,239
Score3384
Official
Categories
MediaProductivityDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit12 mo agothis month

podbeanMCP · Summary

MCP server for managing podcasts through the Podbean API with authentication, episodes, and analytics.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

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

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

podbeanMCP · Install

Installation

Via Smithery

npx -y @smithery/cli install @amurshak/podbeanmcp --client claude

Manual 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_secret

Claude 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"
      }
    }
  }
}

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.