WovoQUICKSTART · UNDER 5 MINUTES

Ship your first page

Wovo turns any HTML file into a live, versioned, shareable page — and files it in a searchable team library. Use it from your terminal or wire it straight into your AI agent.

1Point the CLI at your Wovo + token

export WOVO_URL=https://your-wovo.vercel.app
export WOVO_TOKEN=your-deploy-token
export WOVO_WORKSPACE=acme

2Deploy a page (or a whole folder)

# one file
npx wovo deploy ./report.html

# every .html under a folder, grouped by subfolder
npx wovo deploy ./site --tool claude-code

You get back a live URL instantly. Re-deploy the same page and Wovo snapshots a new version automatically.

3Or let your AI agent deploy for you (MCP)

Register the Wovo MCP server once — then ask Claude Code to “deploy this to Wovo” and it gets a shareable link back.

claude mcp add wovo \
  --env WOVO_URL=https://your-wovo.vercel.app \
  --env WOVO_TOKEN=your-deploy-token \
  --env WOVO_WORKSPACE=acme \
  -- node /path/to/wovo/mcp/server.mjs

Tools exposed: wovo_deploy (html or file path → live URL) and wovo_list.

4Browse your library

Everything you deploy lands in a gallery at /w/<workspace> — grouped by space, tagged by source tool, filterable and searchable. That URL is your shareable team library.

See a live library →