MakerReels MCP server
Your agent can pull the lever now.
MakerReels speaks MCP — the open plug standard that lets AI agents use tools. Add it to Claude Code, Cursor, or any MCP-speaking agent, and “make me three ads for my app” becomes something your agent just… does. It pulls the batch, waits for the render, hands you the mp4s and the captions. You stay in your editor.
1. Make a key
In Settings → Connect your agent, hit Make a key and copy it. It starts with
mr_live_and we show it exactly once.2. Add the server
Claude Code (one command)
claude mcp add --transport http makerreels https://makerreels.com/api/mcp --header "Authorization: Bearer mr_live_YOUR_KEY"Cursor / Windsurf / anything that reads mcp.json
{ "mcpServers": { "makerreels": { "url": "https://makerreels.com/api/mcp", "headers": { "Authorization": "Bearer mr_live_YOUR_KEY" } } } }Smoke test from any terminal
curl -X POST https://makerreels.com/api/mcp -H "Authorization: Bearer mr_live_YOUR_KEY" -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'3. Ask for a pull
Try: “Pull a batch of ads for https://apps.apple.com/us/app/… and give me the best caption to post with.” Your agent checks your balance, starts the batch, polls until the render lands (~1–3 minutes), and comes back with mp4 links plus the posting kit.
What your agent gets
makerreels_create_ad_batchStart a batch of ads from your App Store link (spends a free pull or credits).makerreels_get_batchCheck a render and get the finished mp4 links.makerreels_list_batchesSee your recent batches.makerreels_get_accountCheck your plan and credit balance before pulling.makerreels_get_posting_kitCaptions, hashtags, and posting rules for a finished ad.makerreels_list_actorsThe cast you can put on camera for actor-style ads.
The straight talk
- A key acts as your account: it can spend your credits. Treat it like a password, and revoke it in Settings the moment you’re unsure.
- Same rules as the website: free accounts get the watermarked free pull, paid plans meter credits. The agent can’t sneak past the paywall — this door checks the same list as the front one.
- Agents can loop. Ours rate-limits per key, but keep an eye on your balance the first time you let one run.