Turn your agent into a creative engine

Connect agent-media to Claude Code, Cursor, and Claude Desktop — and generate captioned, lip-synced UGC videos right from your chat.

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 a skill

agent-media skills list, then run one and wait:
agent-media skills run make_ugc_video \
  --input '{"description":"a friendly woman","script":"...","duration":10}' \
  --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_video/run \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "description": "...", "script": "...", "duration": 5 }'