Wavix
Wavix is a global communications platform offering APIs for voice, SMS, 2FA, and phone numbers. Our MCP server brings these capabilities to AI agents and agentic workflows.
Ads
Overview
A Model Context Protocol server that gives LLMs and AI agents direct access to the Wavix telecom platform — SMS/MMS, voice calls, 2FA, SIP trunking, phone-number management, 10DLC registration, call recordings, speech analytics, and billing. Wavix is a global communications platform for sending SMS, placing voice calls, and running 2FA flows over a single API. A free trial is available; paid usage follows the Wavix pricing plan attached to your account. The fastest way to use this MCP server is the hosted endpoint at https://mcp.wavix.com/mcp — point any MCP-compatible client at it and authenticate with your Wavix API key. If you need to self-host (custom Wavix deployment, behind a firewall, dedicated instance), see Run your own.
Installation
claude mcp add --transport http wavix https://mcp.wavix.com/mcp --header "Authorization: Bearer YOUR_API_KEY"
Configuration
{
"mcpServers": {
"wavix": {
"url": "https://mcp.wavix.com/mcp",
"headers": {
"Authorization": "Bearer <api_key>"
}
}Capabilities
- Send transactional SMS/MMS
Ask to send a message via `sms_and_mms_messages_send`, returning message ID and delivery status.
- Run 2FA verification flows
Create a code with `two_fa_verification_create`, then validate it via `two_fa_verification_check`.
- Search and buy phone numbers
Find available numbers with `buy_numbers_list`, add to cart via `cart_add`, and complete purchase with `cart_checkout`.
- Search call transcripts
Use `cdrs_search` to find calls by transcription keywords, then enrich results with `cdrs_get`.
- Pull and transcribe recordings
Get a recording via `call_recording_get`, request transcription with `cdrs_retranscribe`, and fetch results via `cdrs_transcription_get`.
- Audit billing and invoices
Review spending with `billing_transactions_list` and download invoice PDFs via `billing_invoices_download`.
Tags
- communication
- sms
- api
Related MCP servers
ElevenLabs
OfficialThe official ElevenLabs MCP server
Resend Email
OfficialSend emails directly from your editor using the Resend API.
AgentRPC
OfficialConnect to any function, any language, across network boundaries using AgentRPC.
Twilio
OfficialInteract with Twilio APIs to send messages, manage phone numbers, configure your account, and more.