Create videos with prompts, and use Rendley’s video editor to adjust anything you need.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
The MCP server for Rendley. It gives an AI assistant a full video editor: connect it once, then create and edit video by describing what you want, in the same chat you already work in. Under the hood it drives the hosted Rendley editor in a browser and calls the hosted Rendley API on your behalf:
https://app.rendley.comhttps://api.rendley.com/v1The same agent is also reachable over plain HTTP (POST /v1/agent) for backends that don't speak MCP. See REST example.
There are two ways to use it:
https://mcp.rendley.com/mcp. Nothing to run. See Connect a client.📖 Full documentation, with step-by-step setup guides and screenshots: docs.rendley.com/mcp
Any client that speaks remote MCP can connect. Point it at the endpoint and authenticate by signing in or with an API key:
Authorization: Bearer YOUR_RENDLEY_API_KEY header. Create one at Settings → API Keys; see Get an API key.Most clients accept a JSON config like this:
For sign-in, drop the headers block and let the client run the browser flow.
The docs have illustrated, per-client walkthroughs:
mcp-remote bridge for local-only clients.For Claude Code specifically:
Ask the client what it can do, then try a simple request:
What can Rendley do here?
List my projects.
If it lists the Rendley tools and your projects, you're connected. From there, describe the video you want and the assistant creates a project, builds the edit, and returns a link.
This repo is the MCP server only; it does not run the full Rendley stack locally. It talks to the hosted Rendley API and editor. When you self-host, point clients at your own https://<host>/mcp instead of https://mcp.rendley.com/mcp.
>= 1.1 (or Docker)API_BASE_URL and APP_BASE_URL default to the hosted Rendley API and editor, so the server boots out of the box with no .env at all; copy .env.example only to point at a different stack. The server holds no credentials of its own: every request authenticates with the caller's own API key or OAuth token.
By default the server drives the editor with a local Chrome (BROWSER_MODE=local), so no extra infrastructure is needed. bun install downloads a bundled Chromium; with USE_CHROME_CHANNEL=true it prefers your installed Google Chrome and falls back to the bundled browser. Set HEADLESS=false to watch the editor in a visible window, and CPU_ONLY=true on machines without a usable GPU.
Verify it's up:
Use the same client steps as the hosted server, but swap the endpoint for your host (e.g. http://localhost:8787/mcp) and authenticate with your API key as a bearer token:
OAuth. OAuth sign-in is always on. Clients that support it (Claude connectors, ChatGPT, codex mcp login rendley) can sign in via the hosted login flow instead of pasting a key; the server advertises the authorization server through RFC 9728 protected-resource metadata. Set MCP_PUBLIC_URL to this server's public URL so discovery points at the right host.
For hosted deployments, set BROWSER_MODE=remote and point the server at a deployed remote browser worker. The server mints a short-lived editor session token and posts it to the worker, so the caller's credential never leaves this process:
All configuration is via environment variables; start from .env.example, which documents every option. The essentials:
| Variable | Default | Purpose |
|---|---|---|
API_BASE_URL | https://api.rendley.com/v1 | Rendley API root. Override for staging or a self-hosted stack. |
APP_BASE_URL | https://app.rendley.com | Rendley editor root. Override for staging or a self-hosted stack. |
MCP_PUBLIC_URL | none | This server's public URL, advertised for OAuth discovery. |
BROWSER_MODE | local | local = in-process Playwright Chrome; remote = remote browser worker. |
HEADLESS | true | Local mode only; false shows the browser window. |
USE_CHROME_CHANNEL | true | Local mode only; prefer installed Chrome over bundled Chromium. |
CPU_ONLY | false | Force software WebGL (SwiftShader) on hosts without a GPU. |
QUEUE_CONCURRENCY | 120 | Max concurrent browser-backed jobs per container. |
CORS_ORIGINS | none | CSV allowlist of browser origins. Empty disables CORS. |
| Method | Path | |
|---|---|---|
POST | /mcp | MCP Streamable HTTP transport |
POST | /v1/agent | Start an async edit job |
GET | /v1/jobs/:id | Poll a job |
GET | /health | Liveness |
You don't need an MCP client to drive the agent. The same agent is available over plain HTTP. Start a job, get an id back, and poll until the video is ready. Full reference: docs.rendley.com/mcp/api-access.
/health is healthy whenever the server can serve; browser launch failures surface on browser-backed requests.Apache License 2.0. © 2026 Rendley.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/rendley-mcp)<a href="https://allmcps.com/mcp/rendley-mcp"><img src="https://allmcps.com/api/badge/rendley-mcp?style=directory" alt="Rendley MCP on AllMCPs" /></a>