gen-ai CLI
One command for the whole catalog. Generate, batch, upload to Drive, and pipe results — scriptable and pipe-friendly.
Generate image, video, and audio across 176 models from 30 providers — from your terminal with the gen-ai CLI, or from any AI agent via Skills and MCP.
These docs cover the developer & agent surfaces for Picsart's AI catalog. You can drive the same 176 models three ways:
.zip bundles that let you generate in plain English inside Claude Code, Cursor, Windsurf, or ChatGPT.All three share the same model registry and drive the same gen-ai engine — install the CLI, sign in once with gen-ai login (OAuth web login), and every surface works.
Prefer a visual UI? The AI Playground app ↗ is the web app — the point-and-click version of this same catalog, where you pick a model and generate in the browser. These docs are for using that catalog from the terminal and AI agents instead.
npm install -g @picsart/gen-ai # or: curl -fsSL https://picsart.com/gen-ai-cli/install.sh | bash
gen-ai login # OAuth web login (opens your browser)
# text to video
gen-ai generate -m seedance-2.0 -p "a fox running through autumn leaves" -d 8
# image
gen-ai generate -m flux-2-pro -p "studio shot of a ceramic cup" --ar 4:3Connect Picsart to your agent, then generate with a tool call:
| Agent | Connect |
|---|---|
| Claude Code · Cursor · Windsurf | Add the gen-ai-use Skill |
| Codex | codex://plugins/picsart@openai-curated |
| ChatGPT / any MCP client | See picsart.com/gen-ai-mcp ↗ |
// the same image generation, as an agent tool call
{ "name": "picsart_generate",
"arguments": { "model": "flux-2-pro", "prompt": "studio shot of a ceramic cup", "aspectRatio": "4:3" } }Full details in the MCP Quickstart. Browse everything in the Model Catalog or by Provider.