Skip to content

MCP server

Drive Reeloop from AI agents via the Model Context Protocol.

What it is

Reeloop exposes an MCP server so AI agents (Claude, GPT, custom agents) can generate videos as a tool call - no REST wiring needed.

Connect

Add the Reeloop MCP server to your agent's config with your API key:

{
  "mcpServers": {
    "reeloop": {
      "url": "https://reeloop.ai/api/mcp",
      "headers": { "Authorization": "Bearer fl_your_api_key" }
    }
  }
}

An OAuth access token (see the OAuth 2.0 guide) works the same way - pass Authorization: Bearer oat_your_access_token instead. Useful when a third-party agent needs delegated, revocable access rather than your own long-lived key.

Tools

  • generate_video - start a video from a topic, style and voice. Defaults to Director Mode: a free draft (script + shots) parked at awaiting_approval - no credits used yet. Pass mode: "instant" to charge and render immediately instead.
  • approve_draft - approve a Director Mode draft and start the paid render.
  • reject_draft - discard a Director Mode draft. No credit was charged for it, so nothing is refunded.
  • get_video_status - fetch the status / video URL of a job. On an awaiting_approval draft, also returns the editable draft and its draftRevision.
  • save_draft - persist edits to a draft as its next revision - free, never triggers TTS. Needs the baseRevision from get_video_status.
  • export_captions - export a finished video's captions as SRT or VTT, free.
  • publish_video - post a finished video to a connected platform.
  • list_videos - list recent videos on the account.
  • list_connected_platforms - list which platforms are connected and ready to publish to.
  • create_series - schedule a recurring auto-generated video series (daily or weekly, always instant/paid per episode).
  • list_series - list scheduled series.
  • pause_series / resume_series - stop or restart a series' auto-generation.
  • delete_series - permanently delete a series and every video it generated.
  • list_analytics - views/likes/comments/shares for published videos (metrics refresh daily; this reads the latest stored numbers, no live platform calls).
  • estimate_cost - credit cost of a video before generating it. Read-only, never consumes credits.
  • get_channel_recommendations - measured hook/format performance and next-video suggestions, derived from published post analytics.

Flow

The agent calls generate_video, which by default returns a Director Mode draft - review it, optionally revise it with save_draft, then call approve_draft to render or reject_draft to discard (all available as MCP tools, no REST fallback needed). Once approved, poll get_video_status until the video is ready, then optionally call publish_video or export_captions - the same flow as the REST API, exposed as MCP tools.

Start building

Create an API key in Settings → API.

Start for free

1 free video · no credit card