Voice Call MCP Server

A Model Context Protocol (MCP) server that enables Claude and other AI assistants to initiate and manage voice calls using Twilio and OpenAI (GPT-4o

Local serverstdio

What is the Voice Call MCP server?

Voice Call MCP server exists for a simple reason — assistants are far more useful when they can act on Voice Call directly instead of describing what you should do. A Model Context Protocol (MCP) server that enables Claude and other AI assistants to initiate and manage voice calls using Twilio and OpenAI (GPT-4o Realtime model).

What you get

  • Make outbound phone calls via Twilio 📞
  • Process call audio in real-time with GPT-4o Realtime model 🎙️
  • Real-time language switching during calls 🌐
  • Pre-built prompts for common calling scenarios (like restaurant reservations) 🍽️
  • Automatic public URL tunneling with ngrok 🔄
  • Secure handling of credentials 🔒

Setting it up

Installation goes through your MCP client rather than a global install: point it at npm on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Voice Call is connected, these are the calls the assistant has available:

  • Real — time language switching during calls 🌐
  • Pre — built prompts for common calling scenarios (like restaurant reservations) 🍽️
  • TWILIO_ACCOUNT_SID — Your Twilio account SID
  • TWILIO_AUTH_TOKEN — Your Twilio auth token
  • TWILIO_NUMBER — Your Twilio number
  • OPENAI_API_KEY — Your OpenAI API key
  • NGROK_AUTHTOKEN — Your ngrok authtoken
  • RECORD_CALLS — Set to "true" to record calls (optional)
  • Double — check your TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN. You can copy them from the Twilio Console

Configuration and credentials

You will need 5 environment variables: TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN, TWILIO_NUMBER, OPENAI_API_KEY, NGROK_AUTHTOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 22 - If you need to update Node.js, we recommend using nvm (Node Version Manager): - Twilio account with API credentials - OpenAI API key - Ngrok Authtoken

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Voice Call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the voice call mcp server does with a few real requests.

Choosing this one

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Voice Call's toolset — Real, Pre, TWILIO_ACCOUNT_SID and 6 more — is a fair guide to whether it matches your workflow. It is maintained by popcornspace; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
Realtime language switching during calls 🌐
Prebuilt prompts for common calling scenarios (like restaurant reservations) 🍽️
TWILIO_ACCOUNT_SIDYour Twilio account SID
TWILIO_AUTH_TOKENYour Twilio auth token
TWILIO_NUMBERYour Twilio number
OPENAI_API_KEYYour OpenAI API key
NGROK_AUTHTOKENYour ngrok authtoken
RECORD_CALLSSet to "true" to record calls (optional)
Doublecheck your TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN. You can copy them from the [Twilio Console](https://console.twilio.com)

How to install the Voice Call MCP server

{
  "mcpServers": {
    "voice-call": {
      "command": "node",
      "args": ["/path/to/your/mcp-new/dist/start-all.cjs"],
      "env": {
        "TWILIO_ACCOUNT_SID": "your_account_sid",
        "TWILIO_AUTH_TOKEN": "your_auth_token",
        "TWILIO_NUMBER": "your_e.164_format_number",
        "OPENAI_API_KEY": "your_openai_api_key",
        "NGROK_AUTHTOKEN": "your_ngrok_authtoken"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js >= 22 - If you need to update Node.js, we recommend using nvm (Node Version Manager): - Twilio account with API credentials - OpenAI API key - Ngrok Authtoken
VariableDescriptionRequired
TWILIO_ACCOUNT_SIDConfiguration value read at startup.Optional
TWILIO_AUTH_TOKENCredential the server authenticates with.Yes
TWILIO_NUMBERConfiguration value read at startup.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes
NGROK_AUTHTOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Voice Call to Real.
  • Use Voice Call to Pre.
  • Use Voice Call to TWILIO ACCOUNT SID.

Frequently asked questions

It connects Voice Call to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Real, Pre, TWILIO_ACCOUNT_SID, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Voice Call directly.