Skip to main content
Glama

Voyp MCP Server

Voyp モデルコンテキストプロトコルサーバー

モデル コンテキスト プロトコル (MCP) は、AI システムがさまざまなデータ ソースやツールとシームレスに対話し、安全な双方向接続を実現できるようにするオープン スタンダードです。

Anthropic社が開発したモデルコンテキストプロトコル(MCP)により、ClaudeのようなAIアシスタントはVOYPの通話機能とシームレスに統合できます。この統合により、AIモデルは電話をかけ、その進行状況を監視できるようになります。

Voyp MCP サーバーでは次のことが可能です。

  • 通話時に使用する堅牢な通話コンテキストを構築する
  • レストランや歯医者などに電話するときにビジネス情報を検索します...
  • お電話にてご予約、ご相談、お問い合わせなど承っております。
  • 通話のステータスを提供する
  • 通話を切る

前提条件🔧

Voyp を使用する前に、次のものが必要です。

  • Voyp APIキー
    • 通話中に使えるクレジットを購入する必要があります。クレジットはここから購入できます。
  • Claude DesktopGoose 、またはその他の互換性のあるクライアント
  • Node.js (v20以上)
    • 次のコマンドを実行して、Node.js のインストールを確認できます。
      • node --version
  • Gitがインストールされている (Git インストール方法を使用する場合のみ必要)
    • macOSの場合: brew install git
    • Linuxの場合:
      • Debian/Ubuntu: sudo apt install git
      • RedHat/CentOS: sudo yum install git
    • Windowsの場合: Git for Windowsをダウンロード

Goose用の Voyp MCP サーバーのインストール ⚡

voyp-mcp サーバーをインストールするには、拡張機能を手動で追加する必要があります。

GooseにVOYP MCPサーバーを追加する

Voyp + Goose デモ:

Claude Desktop 用の Voyp MCP サーバーのインストール ⚡

voyp-mcp サーバーをインストールするには、次の方法を使用できます。

  1. Smithery経由でインストール
  2. NPXで実行
  3. Gitのインストール

1. Smithery経由でインストールする

Smithery経由で Claude Desktop 用の Voyp Model Context Protocol サーバーを自動的にインストールするには:

npx -y @smithery/cli install @paulotaylor/voyp-mcp --client claude

2. NPXで実行する

npx -y voyp-mcp@0.1.0

サーバーを単独で起動することもできますが、単独では特に役に立ちません。代わりに、MCPクライアントに統合することをお勧めします。以下は、Claudeデスクトップアプリをvoyp-mcpサーバーと連携するように設定する方法の例です。

Claude デスクトップ アプリの設定 ⚙️

macOSの場合:

# Create the config file if it doesn't exist touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json" # Opens the config file in TextEdit open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json" # Alternative method using Visual Studio Code (requires VS Code to be installed) code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

Windowsの場合:

code %APPDATA%\Claude\claude_desktop_config.json

Voyp サーバー構成を追加します。

your-VOYP-api-key実際のVOYP API キーに置き換えます。

{ "mcpServers": { "voyp-mcp": { "command": "npx", "args": ["-y", "voyp-mcp"], "env": { "VOYP_API_KEY": "your-VOYP-api-key" } } } }

3. Gitのインストール

  1. リポジトリをクローンします。
git clone https://github.com/paulotaylor/voyp-mcp.git cd voyp-mcp
  1. 依存関係をインストールします:
npm install
  1. プロジェクトをビルドします。
npm run build

Claude デスクトップ アプリの設定 ⚙️

以下の JSON 構成を使用して、上記の「Claude デスクトップ アプリの構成」セクションで概説されている構成手順に従います。

your-VOYP-api-key-hereを実際のVOYP API キーに置き換え、 /path/to/voyp-mcpシステム上のリポジトリをクローンした実際のパスに置き換えます。

{ "mcpServers": { "voyp": { "command": "npx", "args": ["/path/to/voyp-mcp/build/index.js"], "env": { "VOYP_API_KEY": "your-VOYP-api-key" } } } }

Claude デスクトップアプリでの使用 🎯

インストールが完了し、Claudeデスクトップアプリの設定が完了したら、voyp-mcpサーバーを確認するために、Claudeデスクトップアプリを完全に閉じてから再度開く必要があります。アプリの左下にハンマーアイコンが表示され、利用可能なMCPツールが表示されます。ハンマーアイコンをクリックすると、start_callツールとhangup_callツールの詳細が表示されます。

これで、claude は start_call および hangup_call ツールを含む voyp-mcp サーバーへの完全なアクセス権を持つことになります。

Voyp + Claude デスクトップデモ:

トラブルシューティング 🛠️

よくある問題

  1. サーバーが見つかりません
    • npm --verisonを実行して npm のインストールを確認します。
    • code ~/Library/Application\ Support/Claude/claude_desktop_config.jsonを実行して、Claude Desktop の構成構文を確認します。
    • node --versionを実行して Node.js が正しくインストールされていることを確認します。
  2. NPX関連の問題
  • npxに関連するエラーが発生した場合は、代わりに npx 実行可能ファイルへのフルパスを使用する必要がある場合があります。
  • このパスを見つけるには、ターミナルでwhich npxを実行し、構成内の"command": "npx"行を"command": "/full/path/to/npx"に置き換えます。
  1. APIキーの問題
    • VOYP APIキーが有効であることを確認してください
    • APIキーが設定で正しく設定されていることを確認してください
    • APIキーの周囲にスペースや引用符がないことを確認してください

謝辞✨

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Voyp MCP サーバーを使用すると、AI システムを VOYP の通話機能と統合して、モデル コンテキスト プロトコルを通じて通話の発信、予定のスケジュール設定、通話ステータスの追跡などの安全なテレフォニー アクションを実行できます。

  1. 前提条件🔧
    1. Goose用の Voyp MCP サーバーのインストール ⚡
      1. Claude Desktop 用の Voyp MCP サーバーのインストール ⚡
        1. Smithery経由でインストールする
        2. NPXで実行する
        3. Claude デスクトップ アプリの設定 ⚙️
        4. macOSの場合:
        5. Windowsの場合:
        6. Voyp サーバー構成を追加します。
        7. Gitのインストール
        8. Claude デスクトップ アプリの設定 ⚙️
      2. Claude デスクトップアプリでの使用 🎯
        1. トラブルシューティング 🛠️
          1. よくある問題
        2. 謝辞✨

          Related MCP Servers

          • -
            security
            A
            license
            -
            quality
            A Model Context Protocol (MCP) server enabling AI models to interact with the Nostr network, facilitating note posting and interaction with the freedom of speech protocol.
            Last updated -
            1
            19
            TypeScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            A Model Context Protocol (MCP) server that allows AI agents like Claude to interact with the Aligo SMS API to send text messages and retrieve related information.
            Last updated -
            JavaScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            A Model Context Protocol server that enables AI models to interact with VoIPBin's VoIP services, supporting features like call management, agent management, campaigns, conferences, and chat functionality.
            Last updated -
            2
            Python
            MIT License
            • Linux
            • Apple
          • A
            security
            A
            license
            A
            quality
            An official Model Context Protocol (MCP) server that enables AI clients to interact with ElevenLabs' Text to Speech and audio processing APIs, allowing for speech generation, voice cloning, audio transcription, and other audio-related tasks.
            Last updated -
            19
            700
            Python
            MIT License
            • Apple

          View all related MCP servers

          MCP directory API

          We provide all the information about MCP servers via our MCP API.

          curl -X GET 'https://glama.ai/api/mcp/v1/servers/paulotaylor/voyp-mcp'

          If you have feedback or need assistance with the MCP directory API, please join our Discord server