# Future Video Studio MCP server

Create and manage cinematic AI video renders through the Future Video Studio Agent API.

## Links
- Registry page: https://www.getdrio.com/mcp/video-future-future-video-studio
- Repository: https://github.com/ariadne-coil/fvs-mcp
- Website: https://future.video

## Install
- Command: `uvx future-video-studio-mcp`
- Endpoint: https://mcp.future.video/mcp
- Auth: Not captured

## Setup notes
- Remote header: X-FVS-Agent-Key (secret)
- Package: Pypi future-video-studio-mcp v0.1.2
- Remote endpoint: https://mcp.future.video/mcp
- Header: X-FVS-Agent-Key

## Tools
- fvs_open_chatgpt_app (Open Future Video Studio) - Open the Future Video Studio ChatGPT app widget without creating a render. Use this when the user wants the FVS app panel, wants to paste a status URL, or wants to prepare a render interactively before spending credits. Endpoint: https://mcp.future.video/mcp
- fvs_submit_render (Submit render) - Submit a Future Video Studio render job through the FVS Agent API.

    Pass the render payload as `request`. For reference assets, pass public
    HTTPS URLs in `upload_urls`; every `request.assets[].filename` must match
    one uploaded URL basename or explicit upload URL filename. Credentials come
    from the connector header, marketplace account mapping, or FVS_AGENT_API_KEY
    in the MCP server environment.
     Endpoint: https://mcp.future.video/mcp
- fvs_create_paid_render_quote (Create paid render quote) - Create a no-account Link payment quote for an FVS render.

    The backend returns HTTP 402 payment details as data: `payment_url`,
    `status_url`, `claim_token`, `amount_cents`, `currency`, and a raw
    `www_authenticate` challenge. Pay `payment_url` with Link's MPP flow, then
    poll with fvs_get_paid_render_status. Local file uploads are not available
    in paid quote mode; use public HTTPS `upload_urls` when assets are needed.
     Endpoint: https://mcp.future.video/mcp
- fvs_get_render_status (Get render status) - Check a Future Video Studio render job.

    Provide either `project_id` or the full `status_url` returned by
    fvs_submit_render.
     Endpoint: https://mcp.future.video/mcp
- fvs_get_paid_render_status (Get paid render status) - Check a no-account paid render created with fvs_create_paid_render_quote.

    Provide the full `status_url` or pass both `quote_id` and `claim_token`.
     Endpoint: https://mcp.future.video/mcp
- fvs_cancel_render (Cancel render) - Cancel a Future Video Studio render job.

    Provide either `project_id` or the full `cancel_url` returned by
    fvs_submit_render.
     Endpoint: https://mcp.future.video/mcp
- fvs_download_final_video (Download final video) - Download a completed Future Video Studio final render URL to a local file.

Use this only after fvs_get_render_status or fvs_get_paid_render_status returns
a final_video_url for a completed render. The tool performs an unauthenticated
HTTPS GET to that signed URL and writes the response bytes to output_path on the
MCP server's local filesystem. It does not call the FVS Agent API, spend wallet
credits, require FVS_AGENT_API_KEY, cancel jobs, or modify remote render state.

Side effects and constraints: output_path is a local filesystem path for the MCP
server process, parent directories are created, existing files are not replaced
unless overwrite is true, and large videos may take minutes to download. The
request timeout is 600 seconds. Use a fresh status check to refresh expired
signed URLs, and do not pass arbitrary or untrusted URLs. Endpoint: https://mcp.future.video/mcp
- fvs_example_render_request (Example render request) - Return a minimal scene render request agents can adapt. Endpoint: https://mcp.future.video/mcp

## Resources
- fvs://agent-api/reference - Return the compact Future Video Studio Agent API reference. MIME type: text/plain
- ui://future-video-studio/render-console-v1.html - Future Video Studio ChatGPT app widget for creating and monitoring Future Video Studio renders. MIME type: text/html;profile=mcp-app

## Prompts
Not captured

## Metadata
- Owner: video.future
- Version: 0.1.2
- Runtime: Pypi
- Transports: STDIO, HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: May 7, 2026
- Source: https://registry.modelcontextprotocol.io
