Cloud communications and collaboration.
## RingCentral MCP Server: Unified Communications The **RingCentral MCP Server** integrates RingCentral's UCaaS platform into Google Antigravity. This enables enterprise voice, video, messaging, and fax capabilities through a unified API. ### Why RingCentral MCP? RingCentral unifies enterprise communication: - **All-in-One**: Voice, video, messaging, fax - **Enterprise Grade**: 99.999% uptime SLA - **Integrations**: 300+ business app integrations - **Global**: 45+ countries supported - **Compliance**: HIPAA, GDPR compliant ### Key Features #### 1. Send SMS ```python from ringcentral import SDK sdk = SDK(client_id, client_secret, server) platform = sdk.platform() platform.login(jwt=jwt_token) response = platform.post("/restapi/v1.0/account/~/extension/~/sms", { "from": {"phoneNumber": "+15551234567"}, "to": [{"phoneNumber": "+15559876543"}], "text": "Your appointment is confirmed for tomorrow at 2 PM." }) ``` #### 2. Make Calls ```python # Ring out (connect two parties) response = platform.post("/restapi/v1.0/account/~/extension/~/ring-out", { "from": {"phoneNumber": "+15551234567"}, "to": {"phoneNumber": "+15559876543"}, "playPrompt": True }) ``` #### 3. Team Messaging ```python # Post to team response = platform.post("/restapi/v1.0/glip/chats/{chatId}/posts", { "text": "Build #123 deployed successfully! :rocket:" }) # Create team response = platform.post("/restapi/v1.0/glip/teams", { "public": False, "name": "Project Alpha", "members": [{"email": "user@example.com"}] }) ``` ### Configuration ```json { "mcpServers": { "ringcentral": { "command": "npx", "args": ["-y", "@anthropic/mcp-ringcentral"], "env": { "RINGCENTRAL_CLIENT_ID": "your-client-id", "RINGCENTRAL_CLIENT_SECRET": "your-secret", "RINGCENTRAL_JWT": "your-jwt-token" } } } } ``` ### Use Cases **Enterprise Communication**: Unified business messaging. **Call Center**: Programmable voice automation. **Team Collaboration**: Integrated team messaging. The RingCentral MCP Server brings unified communications to Antigravity.
{
"mcpServers": {
"ringcentral": {}
}
}