# 安装 io.github.geraservicesuk/mcp-gerapodcast

- 类型: MCP 工具
- 说明: 帮助用户发现播客、检索单集、获取转录并订阅感兴趣节目。
- 仓库: https://github.com/geraservicesuk/globetura
- ⚠ 安全: 该 MCP 工具功能上主要围绕播客检索、转录获取与订阅，材料未显示明显恶意行为。基于官方 Registry、开源且近期维护，整体偏低风险，但因通过可配置 API URL 访问远程服务并会在本机执行，仍建议按最小权限使用。

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "io.github.geraservicesuk/mcp-gerapodcast" MCP 服务：
执行：claude mcp add io-github-geraservicesuk-mcp-gerapodcast -- npx -y @gera-services/mcp-gerapodcast
```

### Codex
```
请帮我安装 askskill 上的 "io.github.geraservicesuk/mcp-gerapodcast" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-geraservicesuk-mcp-gerapodcast]
command = "npx"
args = ["-y","@gera-services/mcp-gerapodcast"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "io.github.geraservicesuk/mcp-gerapodcast" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-geraservicesuk-mcp-gerapodcast": { "command": "npx", "args": ["-y","@gera-services/mcp-gerapodcast"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add --env GERAPODCAST_API_URL=YOUR_VALUE --transport stdio io-github-geraservicesuk-mcp-gerapodcast -- npx -y @gera-services/mcp-gerapodcast
```
需要环境变量：GERAPODCAST_API_URL

### Codex
```bash
codex mcp add --env GERAPODCAST_API_URL=YOUR_VALUE io-github-geraservicesuk-mcp-gerapodcast -- npx -y @gera-services/mcp-gerapodcast
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-geraservicesuk-mcp-gerapodcast]
command = "npx"
args = ["-y","@gera-services/mcp-gerapodcast"]

[mcp_servers.io-github-geraservicesuk-mcp-gerapodcast.env]
GERAPODCAST_API_URL = "YOUR_VALUE"
```
需要环境变量：GERAPODCAST_API_URL

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-geraservicesuk-mcp-gerapodcast": {
      "command": "npx",
      "args": [
        "-y",
        "@gera-services/mcp-gerapodcast"
      ],
      "env": {
        "GERAPODCAST_API_URL": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-geraservicesuk-mcp-gerapodcast&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBnZXJhLXNlcnZpY2VzL21jcC1nZXJhcG9kY2FzdCJdLCJlbnYiOnsiR0VSQVBPRENBU1RfQVBJX1VSTCI6IllPVVJfVkFMVUUifX0
需要环境变量：GERAPODCAST_API_URL
