Skip to main content
Glama

RetellAI MCP 服务器

这是一个用于 RetellAI 的模型上下文协议 (MCP) 服务器实现,允许 AI 助手与 RetellAI 的语音服务进行交互。

功能

RetellAI MCP 服务器提供了以下工具:

  • 通话管理:创建和管理电话通话及网页通话

  • 智能体管理:创建和管理具有不同 LLM 配置的语音智能体

  • 电话号码管理:配置和管理电话号码

  • 语音管理:访问和使用不同的语音选项

Related MCP server: Voice Call MCP Server

Claude Desktop 设置

  1. 打开 Claude Desktop 并按 CMD + , 进入 Settings(设置)。

  2. 点击 Developer(开发者)选项卡。

  3. 点击 Edit Config(编辑配置)按钮。

  4. 这将在文件资源管理器中打开 claude_desktop_config.json 文件。

  5. 从 Retell 控制面板获取您的 Retell API 密钥 (https://dashboard.retellai.com/apiKey)。

  6. 将以下内容添加到您的 claude_desktop_config.json 文件中。详情请参阅此处

  7. 编辑配置文件后重启 Claude Desktop。

{
  "mcpServers": {
    "retellai-mcp-server": {
      "command": "npx",
      "args": ["-y", "@abhaybabbar/retellai-mcp-server"],
      "env": {
        "RETELL_API_KEY": "<your_retellai_token>"
      }
    }
  }
}

故障排除:“No tools available”(无可用工具)

如果 Claude Desktop 显示了服务器但没有工具,请升级到最新的软件包版本:

npx -y @abhaybabbar/retellai-mcp-server@latest

此问题通常是由旧安装中的依赖项/版本不匹配引起的。

示例用例:

  1. 列出我在 retellai 中拥有的所有号码

  2. 列出我拥有的所有智能体

  3. 告诉我更多关于披萨外卖智能体的信息

  4. 创建智能体并拨打电话示例:

    1. 创建一个给当地披萨店打电话的智能体,确保对话简短且切中要点。

    2. 点一份玛格丽特披萨

    3. 货到付款

    4. 送到

    5. 智能体应该假装是我。我的名字是 <your_name>

    6. 使用美国号码拨打我当地披萨店的电话 <phone_number>

仓库设置

  1. 安装依赖项:

npm i
  1. 创建一个包含您的 RetellAI API 密钥的 .env 文件:

RETELL_API_KEY=your_api_key_here
  1. 运行服务器:

node src/retell/index.js

可用工具

通话工具

  • list_calls:列出所有 Retell 通话

  • create_phone_call:创建新的电话通话

  • create_web_call:创建新的网页通话

  • get_call:获取特定通话的详细信息

  • delete_call:删除特定通话

智能体工具

  • list_agents:列出所有 Retell 智能体

  • create_agent:创建新的 Retell 智能体

  • get_agent:通过 ID 获取 Retell 智能体

  • update_agent:更新现有的 Retell 智能体

  • delete_agent:删除 Retell 智能体

  • get_agent_versions:获取 Retell 智能体的所有版本

电话号码工具

  • list_phone_numbers:列出所有 Retell 电话号码

  • create_phone_number:创建新的电话号码

  • get_phone_number:获取特定电话号码的详细信息

  • update_phone_number:更新电话号码

  • delete_phone_number:删除电话号码

语音工具

  • list_voices:列出所有可用的 Retell 语音

  • get_voice:获取特定语音的详细信息

许可证

MIT

Related MCP Connectors

  • The Telnyx MCP server is an official implementation of the Model Context Protocol that enables AI clients (like Claude Desktop, Cursor, and OpenAI Agents) to interact with Telnyx's telephony, messaging, and AI assistant APIs. It provides comprehensive capabilities including making and managing phone calls, sending SMS/MMS messages, purchasing and configuring phone numbers, creating AI assistants with custom instructions, managing cloud storage buckets, scraping and embedding website content, and handling integration secrets. The server exists as both a local implementation and a remotely hosted version, allowing developers to integrate real-world communication infrastructure directly into AI applications.

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • A Model Context Protocol server for Wix AI tools

  • Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server

Related MCP Servers