trackmcp
Back to directory
radekklein92

volai-plugin

View on GitHub

Claude Code plugin and MCP config for volai - Czech telephony API and MCP for apps and AI agents: numbers, calls, SMS, voice agent.

0 starsOthers Updated Sep 2, 2026
claude-codecpaasczechgemini-cli-extensionmcp-serversms-apitelephonytwilio-alternativevoice-agents

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.json`MCP server config, drop into any MCP-compatible client
`.claude-plugin/plugin.json`Claude Code plugin manifest
`gemini-extension.json`Gemini CLI extension manifest (same remote MCP server)
`skills/volai/SKILL.md`Full API and MCP reference for AI agents
`examples/make-call.mjs`Minimal Node.js script that places a trial voice-agent call over the REST API
`examples/send-sms.mjs`Minimal 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)

bash
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)

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

Gemini CLI

bash
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):

json
{
  "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):

bash
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.

Frequently asked questions

What is volai-plugin?

volai-plugin is Claude Code plugin and MCP config for volai - Czech telephony API and MCP for apps and AI agents: numbers, calls, SMS, voice agent.

How do I install volai-plugin?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is volai-plugin open source?

Yes — it is hosted on GitHub at https://github.com/radekklein92/volai-plugin.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP