Spix
OfficialThis MCP server gives AI clients (like Claude Desktop or Cursor) full access to Spix's communications infrastructure through callable tools.
Phone Calls: Initiate outbound AI-powered calls, monitor status, retrieve full transcripts and AI-generated summaries, and cancel in-progress calls.
SMS: Send messages, list SMS history with direction filtering, and view full conversation threads.
Email: Send plain text or HTML emails, reply to received emails, and list/filter your inbox.
Playbooks: Create, update, clone, pause, resume, and delete call or SMS automation workflows. Configure AI personas, voices, languages, TTS emotions, and manage rules (guardrails and objection handlers).
Contacts: Create and list contacts, view communication history, get AI-generated summaries, and add/remove tags.
Phone Numbers: List and inspect your numbers, bind/unbind them to playbooks, and release numbers.
Auth & API Keys: Check current authenticated identity, list, create, and revoke API keys.
Billing & Analytics: View billing plan status, check credit balance, and review credit usage history.
Webhooks: Register endpoints, list existing ones, and subscribe to specific event types (optionally filtered by playbook).
spix-mcp
MCP server for Spix — give any MCP-compatible AI client a phone number, an inbox, and a voice.
spix-mcp is a standalone Model Context Protocol server that exposes Spix's communications infrastructure — phone calls, email, contacts, analytics — as MCP tools and resources.
Connect it to Claude Desktop, Cursor, or any MCP-compatible client and your AI can literally pick up the phone.
Install
# via pip
pip install spix-mcp
# via uvx (no install needed)
uvx spix-mcpThe Spix CLI must also be installed and authenticated:
curl -fsSL https://spix.sh/install.sh | sh
spix auth loginQuick setup: Claude Desktop
The fastest way — use the built-in installer from the Spix CLI:
spix mcp install claudeThis writes the correct config to ~/Library/Application Support/Claude/claude_desktop_config.json automatically. Restart Claude Desktop and Spix tools appear immediately.
Or configure manually in claude_desktop_config.json:
{
"mcpServers": {
"spix": {
"command": "uvx",
"args": ["spix-mcp"],
"env": {
"SPIX_API_KEY": "spix_live_sk_your_key_here"
}
}
}
}Get your API key from app.spix.sh/settings/api-keys.
Quick setup: Cursor
spix mcp install cursorOr add to your Cursor MCP config manually with the same JSON structure as above.
What your AI can do
Once connected, your AI client has access to 43 tools (safe profile) or 49 tools (full profile) across all Spix capabilities:
Phone calls
Tool | Description |
| Make an outbound AI phone call |
| Get call status and metadata |
| List recent calls |
| Get full call transcript |
| Get call summary + extracted fields |
| Cancel an in-progress call (full profile) |
Tool | Description |
| Send an email from your Spix inbox |
| Reply to a received email |
| List emails in your inbox |
SMS
Tool | Description |
| Send an SMS message |
| List SMS messages |
| Get an SMS conversation thread |
Playbooks
Tool | Description |
| Create a call or SMS playbook |
| List all playbooks |
| Get playbook details |
| Update playbook settings |
| Clone an existing playbook |
| Pause a playbook |
| Resume a paused playbook |
| Delete a playbook (full profile) |
| List available voices |
| List supported languages |
| List available emotions |
| Add a rule to a playbook |
| List playbook rules |
| Remove a playbook rule |
| Clear all playbook rules |
Contacts
Tool | Description |
| Create a contact |
| Get contact details |
| List contacts |
| Get communication history with a contact |
| Get AI-generated contact summary |
| Add tags to a contact |
Phone numbers
Tool | Description |
| List your phone numbers |
| Get phone number details |
| Bind a number to a playbook |
| Remove a binding |
| Release a phone number (full profile) |
Auth & API keys
Tool | Description |
| Check current authentication |
| List API keys |
| Create a new API key |
| Revoke an API key (full profile) |
Billing & analytics
Tool | Description |
| Get billing plan status |
| Check credit balance |
| Get credit usage history |
| Change billing plan (full profile) |
Webhooks
Tool | Description |
| Register a webhook endpoint |
| List webhook endpoints |
| Subscribe to events |
Resources (readable state)
The MCP server also exposes live-readable resources:
resource://calls/{id}/transcript — Call transcript
resource://calls/{id}/summary — Call summary + extraction
resource://sms/{id}/thread — SMS thread
resource://playbook/{id} — Playbook details
resource://contact/{id} — Contact details
resource://contact/{id}/history — Contact history
resource://phone/{id}/route — Phone number routing
resource://billing/credits — Credit balance
resource://billing — Billing overviewTool profiles
Profile | Tools | Description |
| 43 | Excludes destructive operations: key revoke, phone release, playbook delete, call cancel, plan changes |
| 49 | All tools including destructive and billing operations |
For production deployments, safe is recommended. Use full only for trusted clients.
Configuration
All configuration is via environment variables:
Variable | Required | Description |
| Yes | Your Spix API key |
| No | Default playbook ID for calls |
| No | Session name for audit logging |
| No |
|
Scoped access example
Restrict what your agent can access:
{
"mcpServers": {
"spix": {
"command": "uvx",
"args": ["spix-mcp"],
"env": {
"SPIX_API_KEY": "spix_live_sk_your_key_here",
"SPIX_DEFAULT_PLAYBOOK": "plb_call_abc123",
"SPIX_SESSION_NAME": "sales-bot",
"SPIX_TOOL_PROFILE": "safe"
}
}
}
}Example: Ask Claude to make a call
Once configured, you can ask Claude (or any connected client) directly:
"Call +19175550123 using the prospect-qualifier playbook and tell me what they said."
Claude will use spix_call_create, monitor the call, then call spix_call_summary to return the result — without you writing any code.
How it works
Your Agent (Claude, Cursor, etc.)
↓ MCP tool call
Spix MCP Server (this package)
↓ HTTP API call
Spix Backend (api.spix.sh)
↓ Carrier APIs
Phone call / Email / SMSThe MCP server is a thin bridge between the MCP protocol and the Spix REST API. All business logic runs server-side.
Voice calls
When your agent calls spix_call_create, Spix:
Dials the number via Telnyx/Twilio
Uses Deepgram Nova-3 for real-time speech recognition
Uses Claude for conversation turn generation
Uses Cartesia Sonic-3 for text-to-speech
Records the call and generates a transcript + summary
Your agent can then read the transcript and summary via spix_call_transcript and spix_call_summary.
Relationship to spix CLI
spix-mcp is the standalone MCP server package. The full Spix CLI includes the MCP server built in (spix mcp serve) alongside all other Spix commands.
Use spix-mcp if you only need the MCP server (e.g. for Claude Desktop integration without installing the full CLI). Use the full CLI if you want all Spix commands available in your terminal.
Requirements
Python 3.10+
Spix account (free Sandbox for email; Agent plan for calls)
API key from app.spix.sh
Links
Spix — AI agent communications infrastructure: spix.sh
Dashboard: app.spix.sh
Docs — MCP server reference: docs.spix.sh/mcp
Spix CLI — phone calls, SMS, email from the terminal: Spix-HQ/spix-cli
Recipes — ready-to-use agent workflows: spix.sh/recipes
Blog — tutorials and guides: spix.sh/blog
X/Twitter: @spixhq
License
MIT — see LICENSE
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Spix-HQ/spix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server