Cloud communications platform.
## 8x8 MCP Server: Unified Communications The **8x8 MCP Server** integrates 8x8's unified communications platform into Google Antigravity. This enables enterprise voice, video, chat, and contact center capabilities with global coverage. ### Why 8x8 MCP? 8x8 delivers global UCaaS: - **Global Coverage**: 55+ countries direct coverage - **Unified Platform**: Voice, video, chat, SMS - **Contact Center**: Full CCaaS integration - **99.999% Uptime**: Enterprise reliability - **Analytics**: Conversation insights ### Key Features #### 1. Send SMS ```python import requests headers = {"Authorization": f"Bearer {api_key}"} message = requests.post( "https://api.8x8.com/sms/v2/messages", headers=headers, json={ "source": "+15551234567", "destination": "+15559876543", "text": "Your appointment is confirmed for tomorrow." } ) ``` #### 2. Make Calls ```python call = requests.post( "https://api.8x8.com/voice/v1/calls", headers=headers, json={ "from": "+15551234567", "to": "+15559876543", "callbackUrl": "https://example.com/call-events" } ) ``` #### 3. Video Meetings ```python # Create video meeting meeting = requests.post( "https://api.8x8.com/meetings/v1/meetings", headers=headers, json={ "subject": "Sprint Planning", "startTime": "2024-03-15T10:00:00Z", "duration": 60 } ) print(f"Join URL: {meeting.json()['joinUrl']}") ``` ### Configuration ```json { "mcpServers": { "eight-x-eight": { "command": "npx", "args": ["-y", "@anthropic/mcp-8x8"], "env": { "EIGHTXEIGHT_API_KEY": "your-api-key", "EIGHTXEIGHT_SUBACCOUNT_ID": "your-subaccount" } } } } ``` ### Use Cases **Global Communication**: Reach users worldwide. **Unified Platform**: Single solution for all channels. **Contact Center**: Customer service automation. The 8x8 MCP Server brings unified communications to Antigravity.
{
"mcpServers": {
"eight-x-eight": {}
}
}