@instavar/mcp-server
This server lets you manage the full Instavar Studio video workflow — from creation to publishing and analytics — via MCP.
Video Job Management
List recent video jobs, optionally filtered by status
Retrieve detailed job status including runs, artifacts, verifications, and media URLs
Access the materialized composition state (scenes, duration, aspect ratio, etc.) for a job
Video Creation & Editing
Create new video jobs from a structured brief (title, script, caption, scenes, objective, aspect ratio, publish target), triggering the render pipeline
Edit existing job briefs (script, caption, title, scenes, objective, aspect ratio); most changes trigger a re-render automatically
Modify a job's publish target without triggering a re-render
Approval & Publishing
Approve a rendered job to make it publishable and revoke review links
Publish an approved job to a connected social destination (LinkedIn, X, TikTok, YouTube, Instagram, Threads, Facebook, RedNote, Lemon8), with platform-specific options (e.g., TikTok post mode, YouTube privacy status) and QA/AI disclosure overrides
Metrics & Costs
Get engagement metric snapshots for published jobs
Query production infrastructure costs with filtering by date and grouping by provider, job, or day
Social Account Integration
Initiate a headless OAuth pairing flow for social accounts (YouTube, X, TikTok, LinkedIn, Facebook, Instagram, Threads), providing a URL and code for user approval
Poll for the status of a pending social account connection
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@instavar/mcp-servercreate a video brief for my new product launch"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@instavar/mcp-server
Make local videos with Instavar's open-source Remotion templates from Claude Code or Codex. The public template, schema, scaffold, and troubleshooting tools work without an account or API key.
Add an Instavar API key when you want the hosted workflow: create → render → approve → publish → metrics. The authenticated tools are thin HTTP clients to the hosted Instavar API. The package holds no database connection and stores no data of its own.
Which model runs?
The MCP host supplies the general-purpose LLM.
In Claude Code, the selected Claude model interprets the request and calls Instavar tools.
In Codex, the selected OpenAI model interprets the request and calls the same tools.
Other compatible hosts use their own selected model and authentication.
The MCP server does not provide Sonnet, GPT, or another general-purpose model. It exposes typed Instavar capabilities to the model already running in the user's host. Depending on the host and sign-in method, that model usage may draw from a personal or workspace subscription, separate usage credits, or API billing. Those provider rules can change.
Local Remotion rendering uses your own machine. Instavar meters or charges its hosted services, including rendering, storage, specialist media generation, QA, publishing, and other declared job costs. Using a subscription-backed agent does not make those services free.
For the full architecture, see
docs/architecture/studio-agent-workflow-architecture.md.
For dated provider evidence, see
reports/research/subscription-backed-agent-runtime-2026-07-10.md.
Related MCP server: Clean-Cut-MCP
Setup
Add the server to your MCP client config:
{
"mcpServers": {
"instavar": {
"command": "npx",
"args": ["-y", "@instavar/mcp-server"]
}
}
}This starts with the free local template tools. To unlock hosted Studio tools, create an API key at https://instavar.com/studio/settings, then add it:
{
"mcpServers": {
"instavar": {
"command": "npx",
"args": ["-y", "@instavar/mcp-server"],
"env": { "INSTAVAR_API_KEY": "ik_live_..." }
}
}
}Restart the client. The free tools appear in both modes. Hosted tools appear when the key is configured.
Environment
Var | Required | Default | Purpose |
| no | — | Unlocks hosted Studio tools. Scoped to your org; revocable. |
| no |
| Override the API host. |
Tools
Free local tools:
Tool | What it does |
| Reports free and optional account features. |
| Lists published Remotion template families. |
| Returns one template contract. |
| Returns the public VideoSpec JSON Schema. |
| Returns a starter VideoSpec. |
| Creates a deterministic VideoSpec skeleton. |
| Returns the local validation and render workflow. |
| Classifies common local render failures. |
Hosted tools, available when INSTAVAR_API_KEY is configured:
Tool | What it does |
| List recent jobs (newest first). |
| Runs, artifacts, verifications, current video + thumbnail URLs. |
| Materialized composition state for a job. |
| Platform engagement snapshots for a published job. |
| Infra cost summary (Lambda / RunPod / R2 / WaveSpeed / PoYo). |
| Read the current workflow and its version history. |
| Create a job from a structured brief and start rendering. |
| Patch a brief (incl. objective / publishTarget); re-renders unless only publishTarget changed. |
| Retry degraded or unavailable QA against the same current frozen video artifact. |
| Run an advisory Qwen3.6-Plus second opinion against the same frozen video. |
| Regenerate narration and its dependent video from the unchanged durable brief. |
| Store a complete workflow using the inspected |
| Create a conflict-aware workflow version from a recursive patch. |
| Validate and compile the inspected workflow version without rendering. |
| Read the compiled UniversalVideo brief without rendering. |
| Compare two durable workflow versions field by field. |
| Approve the inspected valid version without approving or publishing the video job. |
| Approve a rendered job so it can be published. |
| Publish an approved job to its connected social destination. |
| Start connecting a social account (headless OAuth pairing). |
| Poll a pending account connection until it is connected. |
Workflow inspection, preview, and comparison require read. Workflow draft,
patch, validation, and approval require write. publish_job requires
publish.
Workflow tools reject unknown arguments instead of silently discarding them.
API calls time out after 15 seconds. A stale-version 409 tells the caller to
inspect the latest version, while an unavailable upload or other dependency
conflict tells the caller to resolve that dependency before retrying.
Connecting a social account from the terminal
connect_account returns an approve URL and a short confirm code. Open
the URL in a browser where you are signed in to Instavar, check the code matches
the one in your terminal, and approve — you go through the platform's normal
sign-in, then return to Instavar. Poll connect_account_status with the returned
pairingId until it reports connected. Pairings expire after 10 minutes and
can only be approved by an owner/admin of the workspace.
CLI
npx @instavar/mcp-server --version
npx @instavar/mcp-server --helpLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityFmaintenanceConnects AI assistants like Claude to the Codex CLI for code analysis, editing, and execution. Supports file references with @ syntax, sandboxed code execution with approval workflows, and structured code changes for automated refactoring and documentation.Last updated8239178MIT
- Flicense-qualityFmaintenanceEnables users to create professional React-powered videos through Claude Desktop using natural language and the Remotion framework. It provides a persistent studio environment for generating animations, managing video assets, and rendering high-quality content.Last updated4
- AlicenseAqualityBmaintenanceTurn any YouTube video, article, PDF, or image into a reusable Claude Code skill — without leaving your editor.Last updated632MIT
- Alicense-qualityBmaintenanceIntegrates MuAPI with Claude Code to enable image and video generation, editing, model discovery, and prediction tracking through natural language commands.Last updated434MIT
Related MCP Connectors
Clip videos into captioned shorts, add captions & schedule posts — from Claude, ChatGPT, Cursor.
Generate images, video, music and voice from your CLI or AI agent. On-brand AI media toolkit.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/instavar/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server