Skip to content

Quick Start

Varity Team Core Contributors Updated May 2026

Three ways to get started. Pick the one that fits where you are today.

Migrate an existing app

You already have an app on Vercel. One command migrates and deploys it.

Deploy your current repo

Already have code? Deploy directly with one command from your project folder.

Build from scratch with AI tools

Using Claude Code or Cursor? Add the Varity MCP server and ask your AI tool to deploy.


If you already have a Next.js, React, Vue, Node.js, Python, Astro, Qwik, or Vite app on Vercel, this is the fastest path.

  1. Install the CLI

    Terminal window
    pipx install varitykit
  2. Migrate and deploy

    Terminal window
    varitykit migrate --url https://github.com/username/my-app

    This clones your repository, removes any platform-specific code, and deploys your app to Varity. Your app is live at https://varity.app/my-app/ when done.

  3. Preview before deploying (optional)

    Terminal window
    varitykit migrate --url https://github.com/username/my-app --dry-run

    Shows exactly what will change without deploying anything.

See the full Migration Guide for step-by-step details, rollback instructions, and troubleshooting.


If your project already runs locally, deploy it directly.

Terminal window
cd my-app
varitykit app deploy

Varity auto-detects the framework and hosting mode, then returns a live URL at https://varity.app/<app-name>/.


If you are using Claude Code or Cursor, the Varity MCP server lets your AI tool handle the entire deploy with plain English.

  1. Add the Varity MCP server

    Terminal window
    claude mcp add varity -- npx -y @varity-labs/mcp@beta
  2. Open your project and ask your AI tool to deploy

    Inside Claude Code or Cursor, with your project open:

    Deploy my app to Varity

    The MCP server detects your framework, builds your project, and deploys it automatically.

  3. Your app is live

    Once the deploy finishes, your app is available at:

    https://varity.app/your-app-name/

After deploying, you can check on your app at any time.

With the MCP (inside Claude Code or Cursor):

Check the status of my Varity deployment
Show me the logs for my app

With the CLI:

Terminal window
varitykit app status

FrameworkTypeStatus
Next.jsFull-stackSupported
React (Vite / CRA)StaticSupported
VueStaticSupported
Express / Fastify / Nest / Koa / HonoServerSupported
FastAPIServerSupported
DjangoServerSupported
FlaskServerSupported


Need a starter project? Use your AI coding tool to scaffold app code first, then run varitykit app deploy or varity_deploy.