volai

Czech telephony API and MCP for apps and AI agents - numbers, calls, SMS, voice agent (remote server at https://volai.cz/mcp).

Documentation

volai

Czech telephony API and MCP for apps and AI agents - numbers, calls, SMS, voice agent.

MIT license

volai is a Czech alternative to Twilio for developers and AI agents: +420 phone numbers, calls, SMS and a voice agent through one REST API and one MCP server, billed per second in CZK.

What's in this repo

PathWhat it is
.mcp.jsonMCP server config, drop into any MCP-compatible client
.claude-plugin/plugin.jsonClaude Code plugin manifest
gemini-extension.jsonGemini CLI extension manifest (same remote MCP server)
skills/volai/SKILL.mdFull API and MCP reference for AI agents
examples/make-call.mjsMinimal Node.js script that places a trial voice-agent call over the REST API
examples/send-sms.mjsMinimal Node.js script that sends an SMS over the REST API

Install the MCP server

volai's MCP server is remote (streamable HTTP) - there is nothing to build or run locally.

Claude Code (plugin with the bundled skill)

claude plugin marketplace add https://volai.cz/.claude-plugin/marketplace.json
claude plugin install volai@volai
export VOLAI_API_KEY=vk_YOUR_KEY

Claude Code (MCP server only)

claude mcp add --transport http volai https://volai.cz/mcp \
  --header "Authorization: Bearer vk_YOUR_KEY"

Gemini CLI

gemini extensions install https://github.com/radekklein92/volai-plugin
export VOLAI_API_KEY=vk_YOUR_KEY

Cursor, Windsurf and other MCP clients

Add this to your MCP config (same shape as .mcp.json in this repo):

{
  "mcpServers": {
    "volai": {
      "type": "http",
      "url": "https://volai.cz/mcp",
      "headers": {
        "Authorization": "Bearer vk_YOUR_KEY"
      }
    }
  }
}

Per-client walkthroughs (Cursor, Windsurf, Claude Desktop, n8n, Make, Lovable): volai.cz/en/integrations.

Get vk_YOUR_KEY in the volai portal under API and MCP (volai.cz/en/api-and-mcp) after signing up at volai.cz/en/auth/signup. Treat the key like a password - anyone who has it can spend your credit.

31 tools cover phone numbers, outbound and inbound calls, SMS, voice agents and webhooks. Full tool list: skills/volai/SKILL.md.

REST API

Same account, same API key, same data as the MCP server - a good fit for your own backend. Example (Node.js 20+, no dependencies):

VOLAI_API_KEY=vk_... node examples/send-sms.mjs +420777123456 "Hello from volai"
VOLAI_API_KEY=vk_... node examples/make-call.mjs +420777123456 \
  "You are a friendly receptionist for a small cafe. Ask what the caller needs."

Full reference: volai.cz/en/docs.

License

MIT - see LICENSE. This repository is a plugin/config package and a set of examples; volai itself is a hosted SaaS (volai.cz), operated by ANOVIA Finance s.r.o.