π Varo MCP
Model Context Protocol tools that let AI agents (Claude, VS Code Copilot, Cursorβ¦) generate images, video, and audio through Varoriya.
Get a generation key (
varo_gk_β¦) from varoriya.com/account/key first.Tools
| Tool | What it does |
|---|---|
varo_generate_image | Create an image (z-image, Grok, Nano Banana Pro, Seedream 5 Pro) |
varo_generate_video | Create a video (Seedance 2.0, WAN, Grok) β with audio |
varo_generate_audio | Create audio β music, ambience, SFX, voiceover (Seed Audio) |
varo_get_job | Poll a job for its result URL |
varo_quote_price Β· varo_list_models | Price a request / list models (no key needed) |
varo_balance Β· varo_topup | Check VaroCoin balance / top up via PromptPay QR |
Option A β Remote server (recommended)
Connect to the hosted MCP server over Streamable HTTP. Sign in with your Varoriya account via OAuth β no key to paste.
https://mcp.varoriya.com
Add it as a remote/HTTP MCP server in your client (Claude, VS Code, Cursor). The client walks you through Varoriya sign-in.
Option B β Local (stdio) with your key
VS Code β .vscode/mcp.json
{
"servers": {
"varo": {
"command": "npx",
"args": ["-y", "@varo/mcp"],
"env": { "VARO_API_KEY": "varo_gk_xxxxxxxx" }
}
}
}
Claude Desktop β claude_desktop_config.json
{
"mcpServers": {
"varo": {
"command": "npx",
"args": ["-y", "@varo/mcp"],
"env": { "VARO_API_KEY": "varo_gk_xxxxxxxx" }
}
}
}
Under the hood
The MCP tools call the Generate API at https://api.varoriya.com. See the full REST API reference or try it in the playground. Coins are deducted per generation; failed jobs are auto-refunded.