Skip to main content
Glama

RetellAI MCPサーバー

これはRetellAI用のModel Context Protocol (MCP) サーバー実装であり、AIアシスタントがRetellAIの音声サービスと連携できるようにします。

機能

RetellAI MCPサーバーは、以下のためのツールを提供します:

  • 通話管理: 電話通話およびWeb通話の作成と管理

  • エージェント管理: さまざまな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ダッシュボード(https://dashboard.retellai.com/apiKey)からRetell APIキーを取得します。

  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. エージェントは私のふりをして。私の名前は<your_name>

    5. 米国の番号を使用して、地元のピザ屋<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: 新しいWeb通話を作成

  • get_call: 特定の通話の詳細を取得

  • delete_call: 特定の通話を削除

エージェントツール

  • list_agents: すべてのRetellエージェントをリストアップ

  • create_agent: 新しいRetellエージェントを作成

  • get_agent: IDでRetellエージェントを取得

  • update_agent: 既存のRetellエージェントを更新

  • delete_agent: エージェントを削除

  • 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