Vonage APIs for SMS, voice, and video communications.
## Nexmo MCP Server: Vonage Communications The **Nexmo MCP Server** (now Vonage) integrates Nexmo communication APIs into Google Antigravity. This provides SMS, voice, and verification services with global coverage. ### Why Nexmo MCP? Nexmo powers global communication: - **Global Reach**: 200+ countries - **Verify API**: Phone verification - **Voice API**: Programmable voice - **Messages API**: Multi-channel messaging - **Enterprise**: High reliability ### Key Features #### 1. Send SMS ```python import nexmo client = nexmo.Client(key="api-key", secret="api-secret") response = client.send_message({ "from": "MyApp", "to": "15559876543", "text": "Your verification code is: 123456" }) if response["messages"][0]["status"] == "0": print("Sent successfully!") ``` #### 2. Verify Phone ```python response = client.start_verification( number="15559876543", brand="MyApp" ) request_id = response["request_id"] check = client.check_verification(request_id, code="123456") if check["status"] == "0": print("Verified!") ``` #### 3. Voice Calls ```python from nexmo import Voice voice = Voice(client) response = voice.create_call({ "to": [{"type": "phone", "number": "15559876543"}], "from": {"type": "phone", "number": "15551234567"}, "ncco": [{"action": "talk", "text": "Hello! Your order shipped."}] }) ``` ### Configuration ```json { "mcpServers": { "nexmo": { "command": "npx", "args": ["-y", "@anthropic/mcp-nexmo"], "env": { "NEXMO_API_KEY": "your-api-key", "NEXMO_API_SECRET": "your-secret" } } } } ``` ### Use Cases **Phone Verification**: 2FA via SMS or voice. **Global SMS**: Reach users worldwide. **Voice Automation**: Automated call systems. The Nexmo MCP Server brings Vonage communications to Antigravity.
{
"mcpServers": {
"nexmo": {}
}
}