Turn your agent into a creative engine

Connect agent-media to Claude Code, Cursor, and Claude Desktop — and generate lip-synced UGC videos right from your chat - add captions when you want them.

1

Install the CLI

One line — auth, uploads, and polling are handled for you.
npm install -g agent-media-cli
2

Sign in

Opens a browser, takes 5 seconds. The token is stored locally.
agent-media login
3

Run it

agent-media skills list (one skill: make_ugc), then run and wait:
agent-media skills run make_ugc \
  --input '{"script":"this app changed my mornings","person":"a friendly woman"}' \
  --wait

Available skills

Each is callable from MCP, the CLI, the skill, or the REST API — same skills, one Bearer token.

Loading…

Prefer raw HTTP?

Every skill is also a REST endpoint — same Bearer token. Poll GET /v1/skills/runs/<id> for the result.

REST
curl -X POST \
  https://api.agent-media.ai/v1/skills/make_ugc/run \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "script": "...", "person": "a friendly woman" }'