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.

GitHub
1

Add the skills

One command pulls every agent-media skill into your agent.
npx skills add gitroomhq/agent-media
2

Sign in

Connect your account so the skills can run jobs.
npm i -g agent-media-cli && agent-media login
3

Just ask in chat

Say it in plain words — the agent picks the right skill:
"Make a 10s UGC video of a friendly woman saying '…' with TikTok captions."

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 }'