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/mcp",
"headers": { "Authorization": "Bearer fl_your_api_key" }
}
}
}Tools
generate_video- start a render from a topic, style and voice.get_render_status- fetch the status / video URL of a job.
The agent calls generate_video, then polls get_render_status until the video is ready - the same flow as the REST API, exposed as MCP tools.