MCP Hub
Back to servers

Spix

Give AI agents a real phone number and voice. Make calls, send email, manage contacts — 26 tools, 12 resources.

glama
Forks
1
Updated
Mar 22, 2026

spix-mcp

MCP server for Spix — give any MCP-compatible AI client a phone number, an inbox, and a voice.

spix-mcp MCP server PyPI License: MIT Docs

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-mcp

The Spix CLI must also be installed and authenticated:

curl -fsSL https://spix.sh/install.sh | sh
spix auth login

Quick setup: Claude Desktop

The fastest way — use the built-in installer from the Spix CLI:

spix mcp install claude

This 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 cursor

Or 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

ToolDescription
spix_call_createMake an outbound AI phone call
spix_call_showGet call status and metadata
spix_call_listList recent calls
spix_call_transcriptGet full call transcript
spix_call_summaryGet call summary + extracted fields
spix_call_cancelCancel an in-progress call (full profile)

Email

ToolDescription
spix_email_sendSend an email from your Spix inbox
spix_email_replyReply to a received email
spix_email_listList emails in your inbox

SMS

ToolDescription
spix_sms_sendSend an SMS message
spix_sms_listList SMS messages
spix_sms_threadGet an SMS conversation thread

Playbooks

ToolDescription
spix_playbook_createCreate a call or SMS playbook
spix_playbook_listList all playbooks
spix_playbook_showGet playbook details
spix_playbook_updateUpdate playbook settings
spix_playbook_cloneClone an existing playbook
spix_playbook_pausePause a playbook
spix_playbook_resumeResume a paused playbook
spix_playbook_deleteDelete a playbook (full profile)
spix_playbook_voice_listList available voices
spix_playbook_language_listList supported languages
spix_playbook_emotion_listList available emotions
spix_playbook_rule_addAdd a rule to a playbook
spix_playbook_rule_listList playbook rules
spix_playbook_rule_removeRemove a playbook rule
spix_playbook_rule_clearClear all playbook rules

Contacts

ToolDescription
spix_contact_createCreate a contact
spix_contact_showGet contact details
spix_contact_listList contacts
spix_contact_historyGet communication history with a contact
spix_contact_summaryGet AI-generated contact summary
spix_contact_tagAdd tags to a contact

Phone numbers

ToolDescription
spix_phone_listList your phone numbers
spix_phone_showGet phone number details
spix_phone_bindBind a number to a playbook
spix_phone_unbindRemove a binding
spix_phone_releaseRelease a phone number (full profile)

Auth & API keys

ToolDescription
spix_auth_whoamiCheck current authentication
spix_auth_key_listList API keys
spix_auth_key_createCreate a new API key
spix_auth_key_revokeRevoke an API key (full profile)

Billing & analytics

ToolDescription
spix_billing_statusGet billing plan status
spix_billing_creditsCheck credit balance
spix_billing_credits_historyGet credit usage history
spix_billing_plan_setChange billing plan (full profile)

Webhooks

ToolDescription
spix_webhook_endpoint_createRegister a webhook endpoint
spix_webhook_endpoint_listList webhook endpoints
spix_webhook_subscription_createSubscribe 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 overview

Tool profiles

ProfileToolsDescription
safe (default)43Excludes destructive operations: key revoke, phone release, playbook delete, call cancel, plan changes
full49All 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:

VariableRequiredDescription
SPIX_API_KEYYesYour Spix API key
SPIX_DEFAULT_PLAYBOOKNoDefault playbook ID for calls
SPIX_SESSION_NAMENoSession name for audit logging
SPIX_TOOL_PROFILENosafe (default) or full

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 / SMS

The 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:

  1. Dials the number via Telnyx/Twilio
  2. Uses Deepgram Nova-3 for real-time speech recognition
  3. Uses Claude for conversation turn generation
  4. Uses Cartesia Sonic-3 for text-to-speech
  5. 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


License

MIT — see LICENSE

Reviews

No reviews yet

Sign in to write a review

Spix — MCP Server | MCP Hub