podbeanMCP
by amurshak·★ 0·综合分 33
通过 Podbean API 管理播客的 MCP 服务器,包含认证、节目和分析功能。
概述
Podbean MCP 服务器提供与 Podbean 播客平台的全面集成,使 AI 助手能够通过自然语言对话管理播客、节目和分析等功能。它支持客户端凭据认证和第三方访问的 OAuth 流程,并提供了完善的播客管理、节目发布和分析跟踪工具。该服务器遵循 MCP 协议标准,可以轻松配置 Cline 和 Claude Desktop 等 MCP 客户端。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用Podbean进行播客托管,并希望将播客管理直接集成到AI工作流程中,请选择此服务器。
什么时候不要选它
如果您需要直接文件上传功能或使用其他播客托管平台,请不要选择此服务器。
此 server 暴露的工具
从 README 抽取出 12 个工具authenticate_with_podbeanGet authentication credentials for Podbean API access
list_podcasts_toolList all podcasts associated with the authenticated account
get_podcast_episodes_toolRetrieve all episodes for a specific podcast
publish_episodePublish a new episode to a specified podcast
get_episode_details_toolGet detailed information about a specific episode
update_episodeUpdate an existing episode's details
delete_episodeDelete a specific episode from a podcast
get_podcast_statsRetrieve analytics and statistics for a podcast
get_oembed_dataGet embeddable data for a public Podbean URL
authorize_file_uploadGet authorization for uploading files to Podbean
get_public_episode_infoRetrieve information about any public episode
generate_oauth_urlCreate an OAuth URL for third-party access
可对比工具
安装
安装
通过 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_secretClaude 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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。