语音通话助手
STDIO支持AI助手发起和管理语音通话的服务器
支持AI助手发起和管理语音通话的服务器
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).
Use this as a base to kick-start your AI-powered voice calling explorations, save time and develop additional functionality on top of it.
sequenceDiagram participant AI as AI Assistant (e.g., Claude) participant MCP as MCP Server participant Twilio as Twilio participant Phone as Destination Phone participant OpenAI as OpenAI AI->>MCP: 1) Initiate outbound call request <br>(POST /calls) MCP->>Twilio: 2) Place outbound call via Twilio API Twilio->>Phone: 3) Ring the destination phone Twilio->>MCP: 4) Call status updates & audio callbacks (webhooks) MCP->>OpenAI: 5) Forward real-time audio to OpenaAI's realtime model OpenAI->>MCP: 6) Return voice stream MCP->>Twilio: 7) Send voice stream Twilio->>Phone: 8) Forward voice stream Note over Phone: Two-way conversation continues <br>until the call ends
The Model Context Protocol (MCP) bridges the gap between AI assistants and real-world actions. By implementing MCP, this server allows AI models like Claude to:
This open-source implementation provides transparency and customizability, allowing developers to extend functionality while maintaining control over their data and privacy.
nvm
(Node Version Manager):
nvm install 22 nvm use 22
Clone the repository
git clone https://github.com/lukaskai/voice-call-mcp-server.git cd voice-call-mcp-server
Install dependencies and build
npm install npm run build
The server requires several environment variables:
TWILIO_ACCOUNT_SID
: Your Twilio account SIDTWILIO_AUTH_TOKEN
: Your Twilio auth tokenTWILIO_NUMBER
: Your Twilio numberOPENAI_API_KEY
: Your OpenAI API keyNGROK_AUTHTOKEN
: Your ngrok authtokenRECORD_CALLS
: Set to "true" to record calls (optional)To use this server with Claude Desktop, add the following to your configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{ "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" } } } }
After that, restart Claude Desktop to reload the configuration. If connected, you should see Voice Call under the 🔨 menu.
Here are some natural ways to interact with the server through Claude:
Can you call +1-123-456-7890 and let them know I'll be 15 minutes late for our meeting?
Please call Delicious Restaurant at +1-123-456-7890 and make a reservation for 4 people tonight at 7:30 PM. Please speak in German.
Please call Expert Dental NYC (+1-123-456-7899) and reschedule my Monday appointment to next Friday between 4–6pm.
Common error messages and solutions:
"Phone number must be in E.164 format"
"Invalid credentials"
"OpenAI API error"
"Ngrok tunnel failed to start"
"OpenAI Realtime does not detect the end of voice input, or is lagging."
Contributions are welcome! Here are some areas we're looking to improve:
If you'd like to contribute, please open an issue to discuss your ideas before submitting a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
Please do not include any sensitive information (like phone numbers or API credentials) in GitHub issues or pull requests. This server handles sensitive communications; deploy it responsibly and ensure all credentials are kept secure.
We’re hiring engineers to build at the frontier of voice AI — and bake it into a next-gen telco.
Curious? Head to careers.popcorn.space 🍿 !