MCP Catalogs
首页

podbeanMCP

by amurshak·0·综合分 33

通过 Podbean API 管理播客的 MCP 服务器,包含认证、节目和分析功能。

mediaproductivitydeveloper-tools
1
Forks
2
活跃 Issue
12 个月前
最近提交
2 天前
收录于

概述

Podbean MCP 服务器提供与 Podbean 播客平台的全面集成,使 AI 助手能够通过自然语言对话管理播客、节目和分析等功能。它支持客户端凭据认证和第三方访问的 OAuth 流程,并提供了完善的播客管理、节目发布和分析跟踪工具。该服务器遵循 MCP 协议标准,可以轻松配置 Cline 和 Claude Desktop 等 MCP 客户端。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:通过 AI 助手自动化播客发布和管理
:无需离开聊天界面即可访问播客分析和听众数据
:高效管理多个播客账号和节目
:这个服务器能直接将文件上传到 Podbean 吗?
:哪些 MCP 客户端与此服务器兼容?

什么时候选它

如果您已经在使用Podbean进行播客托管,并希望将播客管理直接集成到AI工作流程中,请选择此服务器。

什么时候不要选它

如果您需要直接文件上传功能或使用其他播客托管平台,请不要选择此服务器。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • authenticate_with_podbean

    Get authentication credentials for Podbean API access

  • list_podcasts_tool

    List all podcasts associated with the authenticated account

  • get_podcast_episodes_tool

    Retrieve all episodes for a specific podcast

  • publish_episode

    Publish a new episode to a specified podcast

  • get_episode_details_tool

    Get detailed information about a specific episode

  • update_episode

    Update an existing episode's details

  • delete_episode

    Delete a specific episode from a podcast

  • get_podcast_stats

    Retrieve analytics and statistics for a podcast

  • get_oembed_data

    Get embeddable data for a public Podbean URL

  • authorize_file_upload

    Get authorization for uploading files to Podbean

  • get_public_episode_info

    Retrieve information about any public episode

  • generate_oauth_url

    Create an OAuth URL for third-party access

可对比工具

rss-mcpspotify-podcasts-apianchor-mcp

安装

安装

通过 Smithery 安装

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

手动安装

git clone <repository-url>
cd PodbeanMCP
uv venv
source .venv/bin/activate  # Windows 上: .venv\Scripts\activate
uv pip install -e .

创建包含您凭据的 .env 文件:

PODBEAN_CLIENT_ID=your_client_id
PODBEAN_CLIENT_SECRET=your_client_secret

Claude Desktop 配置

添加到您的 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"
      }
    }
  }
}

FAQ

这个服务器能直接将文件上传到 Podbean 吗?
不能,由于 STDIO 协议限制,服务器只能提供文件上传授权(预签名 URL),但无法处理实际文件传输。必须使用外部工具进行文件上传。
哪些 MCP 客户端与此服务器兼容?
Podbean MCP 服务器与任何 MCP 客户端兼容,包括 Cline(IDE MCP 客户端)、Claude Desktop 和其他符合 MCP 标准的 AI 助手。

podbeanMCP 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。