AI-powered business phone system.
## Dialpad MCP Server: AI-Powered Communications The **Dialpad MCP Server** integrates Dialpad's AI-powered communication platform into Google Antigravity. This enables voice, video, messaging, and contact center capabilities with built-in AI transcription and analytics. ### Why Dialpad MCP? Dialpad leads with AI-powered comms: - **AI Transcription**: Real-time call transcripts - **Sentiment Analysis**: Call sentiment tracking - **Unified Platform**: Voice, video, messaging - **Contact Center**: Full CCaaS solution - **Analytics**: Conversation intelligence ### Key Features #### 1. Make Calls ```python import requests headers = {"Authorization": f"Bearer {api_key}"} call = requests.post( "https://dialpad.com/api/v2/calls", headers=headers, json={ "from_number": "+15551234567", "to_number": "+15559876543", "user_id": "user-id" } ) ``` #### 2. Send SMS ```python message = requests.post( "https://dialpad.com/api/v2/sms", headers=headers, json={ "from_number": "+15551234567", "to_number": "+15559876543", "text": "Meeting reminder: Sprint planning at 2 PM" } ) ``` #### 3. Get Call Analytics ```python # Get call with AI insights call = requests.get( f"https://dialpad.com/api/v2/calls/{call_id}", headers=headers ) data = call.json() print(f"Duration: {data['duration']}") print(f"Sentiment: {data['sentiment_score']}") print(f"Transcript: {data['transcript']}") ``` ### Configuration ```json { "mcpServers": { "dialpad": { "command": "npx", "args": ["-y", "@anthropic/mcp-dialpad"], "env": { "DIALPAD_API_KEY": "your-api-key" } } } } ``` ### Use Cases **AI Call Analysis**: Analyze customer calls. **Sales Intelligence**: Track conversation quality. **Unified Communication**: Voice + messaging. The Dialpad MCP Server brings AI-powered comms to Antigravity.
{
"mcpServers": {
"dialpad": {}
}
}