Turn Claude Code 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
Get your API key
Grab a
ma_… key from the dashboard (API Keys) or run agent-media login.2
Add the MCP server
One command registers agent-media in Claude Code:
claude mcp add agent-media \ -e AGENT_MEDIA_API_KEY=ma_... \ -- npx -y -p @agentmedia/mcp-server@latest agent-media-mcp
3
Generate from chat
Restart Claude Code, then ask: "Make a UGC video with agent-media." Every skill self-describes via
tools/list.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 }'