Turn real-estate listing photos into property videos from your AI assistant.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Turn real-estate listing photos into cinematic property videos from your AI
assistant. reel-estate-mcp is a Model Context Protocol
(MCP) server that connects Claude, Cursor, and other AI assistants to your
Reel Estate account β so you can generate motion
clips, AI-edit photos (virtual staging, twilight, seasonal), add voiceover, and
render finished listing videos, all in plain language.
Reel Estate is the AI real-estate video platform that turns property photos into scroll-stopping listing videos. Create a free account at tryreelestate.com.
You sign in once through your browser (OAuth + PKCE β no API keys, no secrets),
and every call is proxied through the backend's /mcp endpoint, which stays the
single authority for auth, plans, and permissions. This bridge's one superpower on
top of that: it can read local image files and stream them straight into a
project β something a purely remote server can't do.
Nothing to clone or build β your MCP client launches it on demand via npx. You
only need Node.js β₯ 18. (Prefer a global command? npm install -g reel-estate-mcp,
then use reel-estate-mcp in place of npx -y reel-estate-mcp below.)
Zero config β the bridge connects to Reel Estate and handles browser sign-in for you. There's nothing to set up.
Add to your client's MCP config (claude_desktop_config.json, ~/.cursor/mcp.json):
The first tool call opens your browser to sign in with your Reel Estate account
(Clerk OAuth, authorization code + PKCE). After you approve, the browser returns to
http://localhost:8765/callback, tokens cache under ~/.reel-estate-mcp, and
you're in β you won't log in again until the token expires.
Start with whoami to confirm auth and see your plan, then just ask:
To switch users or re-authorize, run logout (revokes server-side + clears
the cache) or delete ~/.reel-estate-mcp.
All API tools proxy through the backend's /mcp api_request, so the backend's
own authorization and plan rules apply.
| Tool | What it does |
|---|---|
help | Guided, always-current walkthrough (also the getting_started prompt) |
whoami | Confirm auth; reports plan, canWrite, and a writeAccess reason. Run first. |
login / logout | Start browser sign-in / clear the session (server revoke + local cache) |
list_projects Β· get_project Β· project_stats | Browse projects |
list_clips Β· list_movies Β· list_voices | Browse clips, rendered movies, TTS voices |
resolve_address | Geocode a free-text address β ranked candidates (for real-listing projects) |
add_image_from_file | Upload a local image into a project (presigned upload β no storage creds) |
generate_clip Β· get_clip_status | Animate a photo into a video clip (Runway); poll the job |
edit_image | AI photo edit β virtual staging, twilight, upscale, seasonal, replace/remove/add, manual |
add_timeline_audio Β· add_timeline_overlay | Place voiceover/music/audio or an image/text overlay |
move_timeline_element Β· reorder_timeline | Retime / resequence the timeline |
render_movie | Assemble the timeline into the final listing video |
list_endpoints Β· api_request | Discover the API catalog / call any route β the escape hatch |
Writes and generation over the MCP require a paid plan β free accounts are
read-only (browse projects, clips, and movies). whoami reports this up front;
a blocked write returns 403 MCP_PAID_PLAN_REQUIRED. See plans at
tryreelestate.com.
/mcp.| Problem | Fix |
|---|---|
| No login prompt / "not authenticated" | Run any tool (or login), open the printed URL, and approve. |
| Switch accounts / re-authorize | Run logout, or delete ~/.reel-estate-mcp. |
Writes blocked (403 MCP_PAID_PLAN_REQUIRED) | Creating/generating/rendering needs a paid plan; free accounts are read-only. See tryreelestate.com. |
src/config.ts β validated env (loaded from this package's folder); derives
the /mcp URL, OAuth store dir, callback port, read-only flag, and default client id.src/oauth.ts β OAuthClientProvider: uses the public client_id, caches
tokens + the PKCE verifier, opens the system browser.src/upstream.ts β the single OAuth'd MCP client connection to /mcp (with
the loopback callback server); callTool / callApiRequest proxies.src/api-client.ts β ApiClient over callApiRequest; enforces read-only.src/catalog.ts β the endpoint catalog surfaced by list_endpoints.src/tools.ts β tools as plain functions (smoke-testable).src/index.ts β registers the tools as MCP tools over stdio.async function fooBar(api, args) in src/tools.ts (use api.get(...) /
api.request(...), which proxy through /mcp).src/index.ts with a Zod inputSchema.scripts/smoke.ts if it's a GET.Everything is already reachable through api_request; convenience tools just make
the common paths first-class.
Reel Estate helps real-estate agents and marketers turn ordinary listing photos into professional property videos β AI virtual staging, twilight conversion, motion/drone clips, voiceover narration, and one-click rendering for Instagram, TikTok, and YouTube. This MCP server brings that workflow into your AI assistant. Get started at tryreelestate.com β
Keywords: real estate video generator, AI listing video, virtual staging, MCP server, Model Context Protocol, Claude, Cursor, property video marketing, drone real estate video, twilight photo editing.
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/reel-estate-mcp)<a href="https://allmcps.com/mcp/reel-estate-mcp"><img src="https://allmcps.com/api/badge/reel-estate-mcp?style=directory" alt="Reel Estate Mcp on AllMCPs" /></a>