🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@varosity/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@varosity/mcp-server

MCP server for Varosity AI — stdio transport, proxies to varosity.ai/api/mcp

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

@varosity/mcp-server

Stdio MCP server for Varosity AI. Exposes every Varosity tool (generate video, voice, music, render, list models, list templates, webhooks, …) to any MCP-aware host — Claude Desktop, Cursor, Cowork, Continue, etc.

Under the hood it proxies every JSON-RPC call to ${VAROSITY_API_BASE}/api/mcp over HTTPS with your vsk_... bearer token. Zero runtime deps.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "varosity": {
      "command": "npx",
      "args": ["-y", "@varosity/mcp-server"],
      "env": {
        "VAROSITY_API_KEY": "vsk_..."
      }
    }
  }
}

Issue a vsk_... token at varosity.ai/app/keys/api-keys. Restart Claude Desktop.

Cursor / Cowork / Continue

Any MCP host that supports the command + args + env shape works. Point it at npx -y @varosity/mcp-server with VAROSITY_API_KEY in the env.

Tools exposed

Full list via tools/list. Current surface:

  • list_models, list_voices, list_templates
  • list_projects, create_project, get_project, create_project_from_template
  • generate_video, generate_voice, generate_music
  • suggest_model (Smart Router)
  • get_job, render_project
  • list_webhooks, create_webhook, test_webhook, delete_webhook

Alternative: direct HTTP

If your MCP host supports the Streamable HTTP transport, you can skip this package entirely:

{
  "mcpServers": {
    "varosity": {
      "url": "https://varosity.ai/api/mcp",
      "transport": "streamable-http",
      "headers": {
        "Authorization": "Bearer vsk_..."
      }
    }
  }
}

This stdio package exists for hosts that only support the command-spawned stdio transport.

Self-host / point at a different deploy

Set VAROSITY_API_BASE in the env block to override the default https://varosity.ai.

Publish

cd packages/mcp-server
pnpm build
npm publish --access public

For MCP Registry and Smithery listing steps, see REGISTRY.md and SMITHERY.md.

Keywords

varosity

FAQs

Package last updated on 15 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts