@davoxi/mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@davoxi/mcp-serverlist my businesses"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@davoxi/mcp-server
MCP (Model Context Protocol) server for the Davoxi AI voice agent platform. Lets AI assistants manage voice businesses, specialist agents, call logs, webhooks, usage analytics, billing, and API keys conversationally.
Works with Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
Installation
Option 1: npx (recommended, zero install)
No installation needed. Just add the config to your AI tool and it runs automatically.
Option 2: Global install
npm install -g @davoxi/mcp-serverOption 3: From source
git clone https://github.com/MabrokaMedia/davoxi-mcp-server.git
cd davoxi-mcp-server
npm install && npm run buildRelated MCP server: ElevenLabs MCP Server
Authentication
Browser Login (recommended)
The easiest way to authenticate — no API key copy-paste needed:
npx @davoxi/mcp-server auth loginThis opens your browser to the Davoxi dashboard where you log in and click "Authorize". The API key is created automatically and saved to ~/.davoxi/mcp.json.
Other auth commands:
npx @davoxi/mcp-server auth status # Check current auth state
npx @davoxi/mcp-server auth logout # Clear saved credentialsManual API Key
Alternatively, get an API key from your Davoxi Dashboard and set it as an environment variable.
Key resolution order: DAVOXI_API_KEY env var > ~/.davoxi/mcp.json (from browser login)
Connecting to Your AI Tool
Prerequisites
Authenticate: Run
npx @davoxi/mcp-server auth login(or get an API key manually)Node.js 20+ installed on your machine
Claude Code
Run this command in your terminal:
claude mcp add davoxi -- npx -y @davoxi/mcp-serverThen set your API key in the environment. Or add to .mcp.json in your project:
{
"mcpServers": {
"davoxi": {
"command": "npx",
"args": ["-y", "@davoxi/mcp-server"],
"env": {
"DAVOXI_API_KEY": "sk_your_key_here"
}
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"davoxi": {
"command": "npx",
"args": ["-y", "@davoxi/mcp-server"],
"env": {
"DAVOXI_API_KEY": "sk_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"davoxi": {
"command": "npx",
"args": ["-y", "@davoxi/mcp-server"],
"env": {
"DAVOXI_API_KEY": "sk_your_key_here"
}
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"davoxi": {
"command": "npx",
"args": ["-y", "@davoxi/mcp-server"],
"env": {
"DAVOXI_API_KEY": "sk_your_key_here"
}
}
}
}Environment Variables
Variable | Required | Default | Description |
| No* | - | Your API key (starts with |
| No |
| Custom API endpoint (must be HTTPS or localhost) |
Available Tools (27)
Businesses (5 tools)
Tool | Description |
| List all businesses on your account |
| Get details of a specific business (voice config, master config, phone numbers) |
| Create a new business with voice model, language, personality, and temperature settings |
| Update business name, phone numbers, voice config, master config, or per-business LLM model + ladder override ( |
| Permanently delete a business and all its agents (requires |
Agents (7 tools)
Tool | Description |
| List all specialist agents for a business |
| Get agent details including system prompt, tools, knowledge sources, and stats |
| Create a specialist agent with system prompt, tools, knowledge sources, and trigger tags |
| Update an agent's configuration (description, prompt, tools, tags, enabled) |
| Permanently delete an agent (requires |
| Copy an existing agent — useful for creating variations or testing changes safely |
Call Logs (2 tools)
Tool | Description |
| List calls with filters: date range, status (completed/missed/failed), agent, pagination |
| Get full call details: transcript, recording URL, duration, summary |
Agent Testing (1 tool)
Tool | Description |
| Send a test message to a deployed business as if you were a real WhatsApp caller and get every reply back. Exercises the full Brain → Master Orchestrator → Specialist code path over the same WebSocket the dashboard test-chat uses — no real Twilio message is sent. Pass the same |
Webhooks (4 tools)
Tool | Description |
| List all webhooks for a business |
| Subscribe to events (call.started, call.completed, agent.invoked, etc.) |
| Update webhook URL, events, or enabled status |
| Delete a webhook (requires |
Phone Numbers (1 tool)
Tool | Description |
| List all phone numbers with business assignment and capabilities |
Analytics & Billing (4 tools)
Tool | Description |
| Detailed usage by resource (calls, minutes, costs per business/agent) |
| Aggregated usage summary for current billing period |
| Current plan, status, billing period, cancellation status |
| All invoices with amounts, status, and PDF download URLs |
Account (4 tools)
Tool | Description |
| Current user profile (ID, email, name) |
| List API keys (prefix only, full key never shown) |
| Create a new API key (full key shown only once — save it!) |
| Permanently revoke an API key (requires |
Example Workflows
Set up a new business with agents
You: Create a business called "Acme Support" with voice "nova", language "en-US",
and personality "You are a friendly, professional customer service agent."
You: Create an agent for that business:
- Description: "Handles appointment scheduling"
- System prompt: "You help callers schedule, reschedule, or cancel appointments.
Always confirm the date, time, and service before booking."
- Trigger tags: ["appointment", "schedule", "booking", "reschedule", "cancel"]
You: Create another agent for billing questions with trigger tags ["billing", "invoice", "payment"]
You: List all agents for Acme Support to verify everything looks goodMonitor call activity
You: Show me all calls for business biz_abc123 from the last 7 days
You: How many calls were missed vs completed this week?
You: Show me the details and transcript for call call_xyz789Set up webhook notifications
You: Create a webhook for business biz_abc123 that sends to
https://hooks.example.com/davoxi with events: call.completed, call.missed
You: List all webhooks for that business to verifyTest an agent end-to-end without WhatsApp
You: I just deployed agent agent_xyz on biz_abc123 — try asking it
"what's your weekend availability?" and tell me what it replies
You: Now follow up with "great, can I book Saturday at 2pm?" using the
same caller_id so it remembers the prior turntest_agent_chat runs through the same Brain → Specialist chain that real Twilio traffic does, so the reply you get back is exactly what a real caller would receive. The Brain may emit a filler ("one moment please…") followed by the Specialist's final answer — both come back in the replies array, in order.
Duplicate and modify an agent
You: Duplicate the appointment booking agent from Acme Support
You: Update the copy's system prompt to handle Spanish-speaking callers
and change trigger tags to ["cita", "reservar", "cancelar"]
You: Enable the new agentSecurity
Authentication
All API calls require a valid
DAVOXI_API_KEY(Bearer token)API keys are scoped to your account — they can only access your businesses, agents, and data
Keys start with
sk_prefix for easy identificationFull API key is only shown once at creation — store it securely
Browser Login Security
CSRF protection — random 64-character state parameter validated on callback
Localhost callback — the temporary server binds to
127.0.0.1only (unreachable from network)Single-use — callback server closes immediately after receiving one response
5-minute timeout — abandoned login flows are automatically cleaned up
File permissions —
~/.davoxi/mcp.jsoncreated with mode0o600(owner read/write only)No open redirect — login redirect validated to start with
/
Transport Security
HTTPS enforced — the server validates that
DAVOXI_API_URLuses HTTPS (http://localhost allowed for development only)Stdio transport — the MCP server communicates via stdin/stdout, not over the network. Your API key never leaves your machine except in authenticated API calls to Davoxi
No open ports — the server doesn't listen on any network port
Data Protection
API key prefixes are returned for identification, but full keys are never re-exposed after creation
SSRF protection — agent tool endpoints are validated to prevent calls to private/internal IPs (127., 10., 192.168., 169.254., etc.)
IPv6 private ranges blocked (::1, fe80:, fc00:, fd00:)
Blocked hostnames: localhost, ip6-localhost (in tool endpoint validation)
Destructive Operation Safety
All destructive operations require explicit confirm=true parameter:
delete_business— warns about cascading deletion of agents, phone assignments, and webhooksdelete_agent— suggests disabling instead (enabled=falseis reversible)revoke_api_key— warns about immediate access loss for integrationsdelete_webhook— confirms permanent removal
Best Practices
Use separate API keys for different environments (production, staging, development)
Name your API keys (
create_api_keywithnameparameter) for easy identificationRotate keys regularly — create a new key, update integrations, then revoke the old one
Use webhooks over polling — subscribe to events instead of repeatedly calling
list_call_logsDisable before deleting — use
update_agentwithenabled=falsebefore permanently deleting
Webhook Security
Webhook responses include a
secretfield at creation — use it to verify payload signaturesEndpoints must respond with 2xx within 10 seconds
Failed deliveries are retried up to 3 times with exponential backoff
Only HTTPS webhook URLs are accepted
Development
npm run dev # Watch mode (recompiles on change)
npm run build # Production build
npm start # Run the server
npm test # Run testsLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/MabrokaMedia/davoxi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server