Varoriya for developers

πŸ”Œ 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

ToolWhat it does
varo_generate_imageCreate an image (z-image, Grok, Nano Banana Pro, Seedream 5 Pro)
varo_generate_videoCreate a video (Seedance 2.0, WAN, Grok) β€” with audio
varo_generate_audioCreate audio β€” music, ambience, SFX, voiceover (Seed Audio)
varo_get_jobPoll a job for its result URL
varo_quote_price Β· varo_list_modelsPrice a request / list models (no key needed)
varo_balance Β· varo_topupCheck 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.