Make a Call requests, valid <Gather> XML, and correct KYC flows straight away.
Skills vs. the MCP server. Skills are static know-how that lives in your agent’s context - how to use Vobiz. The MCP server is a live connection that searches and fetches the docs on demand. They’re complementary: install the skills for reliable, offline-capable patterns, add the MCP server for always-current page lookups. Use both.
Install with one command
The skills are hosted on this docs site. Theskills CLI installs them into whichever agents it detects on your machine:
Skills source
- What you get: the Vobiz skill set listed below, one folder per skill.
- What it is not: skills are instructions, not credentials. You still authenticate every API call with your
X-Auth-ID/X-Auth-Token- see the API Reference.
Prerequisites
- A supported coding agent installed (Claude Code, Codex, Cursor, etc.).
- Node.js 18+ for
npx. Runnode --version; if it printsv18or higher, you’re set. - An internet connection - the skills are fetched from this docs site.
Claude Code
Claude Code loads skills from.claude/skills/ (per-project) or ~/.claude/skills/ (global).
Install the skills
From your project directory, install into Claude Code specifically:Add Omit
--global to make them available in every project instead of just the current repo:--agents to let the CLI auto-detect and offer Claude Code (and anything else) in an interactive checklist.Confirm they landed
vobiz-* skills with the directory each was written to - .claude/skills/ for a project install or ~/.claude/skills/ for a global one.Use them in a session
Skills load automatically by relevance. Just ask for the task:
Write a curl that places an outbound Vobiz call and the minimal answer XML it should return.Claude Code pulls in the
vobiz-voice-calls and vobiz-voice-xml skills and produces a request with the correct /Account/{auth_id}/Call/ path casing and a valid <Response>.Codex
The same command installs into OpenAI Codex. Codex stores its config underCODEX_HOME (default ~/.codex), and the CLI writes the skills into Codex’s skills directory there.
Confirm they landed
vobiz-* skill and the exact Codex directory it was installed to on your machine.Other agents
The same source works with every agent the CLI supports - Cursor, Windsurf, Gemini CLI, GitHub Copilot, Cline, Goose, and more. Target one explicitly with--agents <name>, install everywhere with --all, or run the bare command and pick from the checklist:
The Vobiz skill set
Each skill is scoped to one domain so your agent loads only what’s relevant to the task.| Skill | What it teaches |
|---|---|
vobiz-voice-calls | Place, control, and inspect calls - outbound calls, transfer, hangup, live calls, and mid-call actions. |
vobiz-voice-xml | Build call flows with VobizXML - Speak, Play, Gather, Dial, Record, Stream, Conference, Redirect, Wait, Hangup. |
vobiz-audio-streams | Stream live call audio bidirectionally over WebSocket for AI agents and real-time transcription. |
vobiz-applications-endpoints | Configure Voice Applications (answer/hangup webhooks) and SIP Endpoints (soft-phones, IP phones, browser clients). |
vobiz-sip-trunking | Manage SIP trunks, credentials, IP ACLs, and origination URIs for BYOC and outbound routing. |
vobiz-phone-numbers | Discover, purchase, assign, and release phone numbers (DIDs) across countries. |
vobiz-sub-accounts | Create and manage sub-accounts for multi-team or multi-environment isolation. |
vobiz-cdr | Query Call Detail Records - list, search, retrieve by UUID, fetch recent, and export CSV. |
vobiz-partner-api | Reseller flows - create customer accounts, transfer balance, run KYC sessions, and query per-customer data. |
vobiz-whatsapp | Send and receive on the WhatsApp Business API - templates, campaigns, inbox, and webhooks. |
vobiz-ai-voice-agents | Connect Vobiz to Vapi, Retell, ElevenLabs, LiveKit, Pipecat, and other AI voice platforms over SIP or WebSocket. |
Update or remove
- Update: re-run
npx skills add https://docs.vobiz.aito pull the latest versions. Add--copyif you prefer copies over symlinks. - Inspect:
npx skills listshows every installed skill and its location. - Remove: delete the
vobiz-*folders from your agent’s skills directory (.claude/skills/,~/.claude/skills/, or the Codex skills directory).
Related
- MCP Server - connect your AI client to live, searchable Vobiz docs.
- skills CLI - full command reference and the list of supported agents.
- Quick Start - make your first call once your agent is set up.