CueScope
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., "@CueScopeExplain my current vMix preset and flag any risks."
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.
CueScope
CueScope is a read-first MCP server that gives AI assistants safe production intelligence for workflows compatible with vMix.
This server connects AI assistants to vMix state, curated production knowledge, and reviewable automation planning. By default it does not switch inputs, run scripts, start streams, change audio, or mutate vMix. It reads first, explains what it sees, and helps you decide what to do next.
Package name: @greenhouselabs/cuescope-mcp
Product Promise
Use CueScope as a read-first production advisor:
You: "Explain my current preset and call out anything risky before the show."
Assistant: [reads vMix state]
[identifies program, preview, inputs, title fields, overlays, and audio routing]
[summarizes likely production roles]
[flags risks and suggests review steps]The preserved control tools are still available for advanced users, but the default experience is advisory, state-aware, and review-first.
For a first hands-on walkthrough, use DEMO.md. If you used the old control-first prototype, start with MIGRATION.md.
Related MCP server: checkyourself
What It Does
Capability | Default Behavior |
Preset analysis | Explains current inputs, roles, active/preview state, overlays, and likely risks |
Input lookup | Finds inputs by number, key, name, type, or fuzzy title matching |
Input explanation | Explains one input in context, including fields and production role hints |
Audio diagnosis | Reviews buses, mute state, solo state, vMix Call patterns, and mix-minus risks |
Troubleshooting guidance | Translates pasted errors and explicit log files/excerpts into likely causes, confidence, and safe next checks |
Script generation | Produces reviewable VB.NET artifacts using actual input references and title fields |
Script validation | Checks VB.NET safety rules, syntax patterns, loop sleeps, and state references |
API planning | Produces ordered vMix function-call plans without calling vMix |
XML comparison | Compares before/after vMix XML snapshots and explains changed production state |
Knowledge resources | Exposes curated vMix API, scripting, audio, production, troubleshooting, forum-pattern, and example notes |
Control Mode | Opt-in access to preserved live-control tools, with highest-impact tools behind a second flag |
Quick Start
Prerequisites
Node.js 20+
vMix running with Web Controller enabled in Settings > Web Controller
An MCP-compatible client such as Claude Desktop, Cursor, or Claude CLI
One-Line MCP Setup
The package is published to npm, and no global install is required. Let your MCP client launch the package with npx.
Claude Code CLI:
claude mcp add cuescope -- npx -y @greenhouselabs/cuescope-mcpCodex CLI:
codex mcp add cuescope -- npx -y @greenhouselabs/cuescope-mcpWith vMix running on another trusted machine:
claude mcp add cuescope -e VMIX_HOST=192.168.1.100 -- npx -y @greenhouselabs/cuescope-mcp
codex mcp add cuescope --env VMIX_HOST=192.168.1.100 -- npx -y @greenhouselabs/cuescope-mcpFor guided desktop setup and first-run smoke tests, see docs/DESKTOP-INSTALL.md. For more setup variants, see docs/MCP-SETUP.md.
Install From Source
Use this while developing or testing an unpublished checkout.
git clone https://github.com/greenhouselabs/cuescope-mcp.git
cd cuescope-mcp
npm install
npm run buildnpm Install
npm install -g @greenhouselabs/cuescope-mcpGlobal install is optional. The recommended MCP setup above uses npx.
Client Configuration
Most MCP clients accept this JSON shape:
{
"mcpServers": {
"cuescope": {
"command": "npx",
"args": ["-y", "@greenhouselabs/cuescope-mcp"],
"env": {
"VMIX_HOST": "localhost",
"VMIX_HTTP_PORT": "8088",
"VMIX_TCP_PORT": "8099"
}
}
}
}Do not set VMIX_CONTROL_MODE for the default Review Mode experience.
Windows note (vMix is Windows-only, so this affects most users): Claude Desktop on Windows often cannot spawn
npxdirectly and fails withspawn npx ENOENT. Launch it throughcmdinstead:{ "mcpServers": { "cuescope": { "command": "cmd", "args": ["/c", "npx", "-y", "@greenhouselabs/cuescope-mcp"] } } }If the client still cannot find Node, run
where nodein a terminal to get the absolute path, then use that full path as thecommand(pointingargsat the package's compiled entry point for a source checkout).
For a source checkout, point the client at the compiled entry point instead:
{
"mcpServers": {
"cuescope": {
"command": "node",
"args": ["/path/to/cuescope-mcp/build/index.js"],
"env": {
"VMIX_HOST": "localhost",
"VMIX_HTTP_PORT": "8088",
"VMIX_TCP_PORT": "8099"
}
}
}
}Claude Code CLI
claude mcp add cuescope -- npx -y @greenhouselabs/cuescope-mcpControl Mode:
claude mcp add cuescope-control -e VMIX_CONTROL_MODE=true -- npx -y @greenhouselabs/cuescope-mcpHigh-Impact Control:
claude mcp add cuescope-high-impact -e VMIX_CONTROL_MODE=true -e VMIX_HIGH_IMPACT=true -- npx -y @greenhouselabs/cuescope-mcpCodex CLI
codex mcp add cuescope -- npx -y @greenhouselabs/cuescope-mcpControl Mode:
codex mcp add cuescope-control --env VMIX_CONTROL_MODE=true -- npx -y @greenhouselabs/cuescope-mcpHigh-Impact Control:
codex mcp add cuescope-high-impact --env VMIX_CONTROL_MODE=true --env VMIX_HIGH_IMPACT=true -- npx -y @greenhouselabs/cuescope-mcpClaude Desktop
Use the JSON configuration above in claude_desktop_config.json. The file lives at:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Create the file if it does not exist, then fully quit and reopen Claude Desktop after editing it. On Windows, prefer the cmd /c npx launch shape shown in the Windows note above.
Multiple vMix Instances
To advise on more than one vMix machine (for example a main and a backup mixer), register the server twice under different names with different VMIX_HOST values:
{
"mcpServers": {
"vmix-main": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@greenhouselabs/cuescope-mcp"],
"env": { "VMIX_HOST": "192.168.1.10" }
},
"vmix-backup": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@greenhouselabs/cuescope-mcp"],
"env": { "VMIX_HOST": "192.168.1.11" }
}
}
}Each entry runs its own server process with its own connection, mode flags, and tool surface, and the assistant can address them by name.
Environment Variables
Variable | Default | Description |
|
| vMix hostname or IP address |
|
| HTTP API port |
|
| TCP API port |
|
| Enable TCP tally subscriptions |
|
| Delay between TCP reconnect attempts in ms |
|
| Maximum TCP reconnect attempts |
|
| TCP connection timeout in ms |
|
| Expose safer live-control tools when set to |
|
| Expose high-impact control tools when |
|
| Parsed vMix state cache TTL in ms |
| (bundled) | Override the bundled skill-guidance directory |
| (none) | Directory of your own skills ( |
| (none) | Optional directory that confines preset-file reads; when set, |
|
|
|
A commented .env.example in the repository documents every variable with its default. Boolean variables use canonical true/false values.
Modes And Safety
Review Mode is the default. It exposes read-only tools that return analysis, validation results, scripts, API plans, assumptions, risk notes, and review checklists. Review Mode does not execute scripts, call vMix shortcut functions, save presets, start streams, start recordings, or perform batch commands.
Control Mode is explicit:
VMIX_CONTROL_MODE=trueUse Control Mode when you intentionally want direct vMix control tools to appear in the MCP client. The highest-impact tools require a second opt-in:
VMIX_CONTROL_MODE=true
VMIX_HIGH_IMPACT=trueHigh-Impact Control exposes tools for scripts, batch commands, recording, streaming, snapshots, preset open/save, destructive input management, output routing, show-building, and replay recording. Test these workflows on a rehearsal preset before using them during a live show.
Security Notes
Run vMix Web Controller only on trusted machines and networks. This MCP server talks to the vMix HTTP API, which is normally available at http://localhost:8088/api/; exposing that API to the public internet can expose live production control.
Review Mode is the public-safe default. Control Mode and High-Impact Control are explicit opt-ins for users who understand that the assistant can affect a live production. vMix Call join URLs and passwords are treated as sensitive; tools do not return generated call links unless the caller explicitly requests that behavior.
This project is an independent source-available integration for vMix, published by Greenhouse Ventures LLC under the Greenhouse Labs brand. It is not open source, and use is governed by the CueScope Source-Available License. It is not affiliated with, endorsed by, or sponsored by vMix or StudioCoast Pty Ltd. vMix is a trademark of its respective owner.
Review Mode Tools
These tools are visible by default.
Tool | Purpose |
| Natural-language show review for "check my show" / "am I ready": combines live state, audio, output readiness, preflight, checklist, and optional saved-preset audio/audit context |
| Summarize the current live preset, production shape, risks, output readiness, and preflight checks |
| Generate a reviewable rehearsal, go-live, recovery, or end-show operator handoff |
| Find matching inputs by name, number, key, type, or role clues |
| Explain one input's state, fields, audio, and likely production role |
| Review audio routing, mute/solo state, buses, call audio, and mix-minus risks |
| Review recording, streaming, external output, video path, audio path, output-like helper inputs, and destination blind spots |
| Diagnose pasted vMix/MCP/device log text or one explicit log file with redaction, confidence, and safe next checks |
| Generate a preflight-aware reviewable VB.NET script artifact without executing it |
| Validate VB.NET script text against vMix scripting rules and known state |
| Generate a preflight-aware ordered vMix API command plan without calling vMix |
| Compare two vMix XML snapshots and explain meaningful changes |
| Read-only inventory of a saved |
| Plain-language review and risk flags for VB.NET scripts stored in a saved |
| Cross-reference a saved |
| Go-live readiness report: checks program, preview, audio, fade-to-black, overlays, and input roles against heuristic rules and returns a prioritized verdict ( |
| Test connectivity to vMix and diagnose connection problems |
Note: vmix_analyze_preset analyzes live vMix state from the running /api/ endpoint. The vmix_read_preset_file, vmix_explain_preset_scripts, and vmix_audit_preset_file tools read a saved file on disk and reflect the preset as last saved, which may differ from what vMix is currently running.
Control Mode Tools
When VMIX_CONTROL_MODE=true, the server exposes the safer preserved live-control surface. When VMIX_HIGH_IMPACT=true is also set, it exposes the highest-impact tools too.
Domain | Examples | Gate |
Switching | Cut, fade, transitions, stingers, preview, fade to black | Control Mode |
Audio | Volume, mute, bus assignment | Control Mode |
Graphics | Title text, title images, countdowns, animations | Control Mode |
Overlays | Overlay in, out, and off | Control Mode |
Playback and live adjustments | Playback, layers, browser, vMix Call, PTZ, playlists, color correction, effects, datasource, most replay playback | Control Mode |
Recording and streaming | Record, stream, snapshot, replay recording | High-Impact Control |
Inputs and outputs | Add/remove/rename/reset inputs, output routing, fullscreen, external output | High-Impact Control |
Scripting | Run, stop, save, and legacy script generation tools | High-Impact Control |
Batch, presets, and show-building | Multi-command batches, preset open/save/last, build show, add participant, create multiview | High-Impact Control |
Control Mode keeps the original control prototype salvageable without making live mutation the default product.
Resources
URI | Description |
| Server version, feature, and build metadata |
| Active mode, safety boundary, tool counts, and vMix connection config |
| Parsed current state summary |
| Compact live-state view for active, preview, mixes, overlays, audio, and playback |
| Normalized relationships across inputs, overlays, mixes, audio, and titles |
| Complete raw vMix XML state. Prefer |
| All inputs with parsed properties |
| Title text and image fields across inputs |
| Audio levels, mute states, buses, and solo data |
| State-aware context for script generation |
| Available vMix skill guidance |
| Higher-level setup analysis for advisory workflows |
| Real-time on-air tally (program/preview per input) from the TCP subscription |
| Generated index of curated docs resources and source files |
| MCP knowledge scope, confidence rules, blind spots, and professional-readiness roadmap |
| Curated API and shortcut-function notes |
| Curated VB.NET scripting guidance |
| Curated audio bus and mix-minus guidance |
| Curated production workflow and safe troubleshooting patterns |
| Curated forum-pattern digests |
| Review-first preset, XML snapshot, routing, and script examples |
Prompts
The server ships reusable MCP prompts that mirror the documented Review Mode workflows. They are available in every mode and only reference read-only tools and resources.
Prompt | Arguments | Purpose |
|
| Run |
| none | Run |
|
| Diagnose audio routing, mutes, mix-minus, and feedback risks; optionally focus on one input |
|
| Run |
| none | Read the live state summary and relationships and explain the production like a show runbook |
|
| Audit a saved |
|
| Generate a reviewable rehearsal, go-live, recovery, or end-show checklist from live state |
Example Requests
"Explain my preset like I am preparing for a show."
"Check my show and tell me if anything needs review before we go live."
"Check whether my recording, streaming, and external outputs are ready."
"Find anything that looks risky in my current vMix setup."
"Diagnose my audio routing and call out mix-minus problems."
"Explain this Blackmagic/vMix error and give me safe next checks."
"Generate a safe script to rotate my camera inputs every 10 seconds."
"Validate this vMix VB.NET script before I paste it into vMix."
"Build a reviewable API sequence for showing a lower third."
"Compare these before and after XML snapshots and explain what changed."Troubleshooting
vMix state cannot be read / tools return connection errors:
Confirm the vMix Web Controller is enabled: in vMix, open
Settings > Web Controllerand tick Enabled. The default port is8088.Verify it from a browser on the vMix machine: open
http://localhost:8088/api/- you should see XML. If you do not, the MCP server cannot read state either.Check that
VMIX_HOSTandVMIX_HTTP_PORTin your MCP config match the actual vMix machine and Web Controller port.Confirm vMix itself is running; the Web Controller only responds while vMix is open.
Run the
vmix_connection_testtool from your assistant ("Test the vMix connection and diagnose any problems") for a step-by-step diagnosis.
vMix runs on a different machine (VMIX_HOST is remote):
On the vMix machine, allow inbound TCP port
8088(and optionally8099for tally) through Windows Firewall, scoped to your trusted production network only.Verify reachability from the MCP host first, then keep the Web Controller off the public internet - it is unauthenticated.
TCP tally (port 8099) fails but HTTP state works:
The TCP connection is optional. The server runs HTTP-only without it; only the real-time
vmix://tallyresource is affected.Confirm
VMIX_TCP_PORTmatches vMix's TCP API port, or setTCP_ENABLED=falseto silence reconnect attempts.
The MCP client cannot start the server:
On Windows, use the
cmd /c npxlaunch shape shown in the Windows note under Client Configuration; a bare"command": "npx"often fails withspawn npx ENOENT.Confirm Node.js 20+ is on the PATH the client uses (
node --version, andwhere nodefor the absolute path).Fully restart the MCP client after any config change so the server relaunches with the new environment.
Where to find logs:
The MCP server logs to stderr, which your MCP client captures.
Claude Desktop writes MCP logs to
%APPDATA%\Claude\logson Windows (~/Library/Logs/Claudeon macOS); look for themcp-server-cuescopelog file.You can paste a redacted error/log excerpt into your assistant, or ask it to use
vmix_diagnose_logson one explicit.log,.txt,.json,.ndjson,.xml,.err,.stderr, or.stdoutfile path.vmix_diagnose_logsdoes not scan folders, does not execute fixes, and redacts secrets, vMix Call links, stream URLs, private IPs, and local paths before returning excerpts.For state-aware troubleshooting, pair log diagnosis with
vmix_connection_test,vmix_preflight,vmix_analyze_preset,vmix_diagnose_audio, or saved-preset tools only when those facts can confirm or challenge the log hypothesis.
Demo And Migration
DEMO.md walks through the first Review Mode demo: status, preset analysis, audio diagnosis, script generation, script validation, API planning, and XML comparison.
MIGRATION.md explains how old control-first workflows map to Review Mode, Control Mode, and High-Impact Control.
Claude Skills
The skills/ directory contains compact vMix guidance for assistants. The skills are being reframed around Review Mode first: inspect state, reason from actual inputs, generate reviewable artifacts, and only use control tools when the user has explicitly enabled Control Mode or High-Impact Control.
skills/
|-- vmix-basics/ # Switching, transitions, and production-state basics
|-- vmix-audio/ # Mixing, buses, ducking, calls, and mix-minus checks
|-- vmix-graphics/ # Titles, lower thirds, fields, and GT workflows
|-- vmix-overlays/ # Overlay channels, PIP, and stinger guidance
|-- vmix-scripting/ # VB.NET generation and validation
|-- vmix-replay/ # Instant replay workflows
|-- vmix-show-building/ # Complete show setup and review
|-- vmix-streaming/ # Recording, streaming, and external output safety
`-- vmix-troubleshooting/ # Error, log, device, and hardware diagnosisArchitecture
MCP Client (Claude, Cursor, CLI)
|
| MCP Protocol over stdio
v
CueScope
|
|-- src/tools/ # Review tools by default, control tools by opt-in flag
|-- src/resources/ # 21 MCP resources for state, docs, skills, and status
|-- src/clients/ # vMix HTTP and TCP clients
|-- src/state/ # XML parser, cache, and normalized relationships
|-- src/validation/ # VB.NET and API validation helpers
|-- knowledge/ # Curated production knowledge and examples
`-- skills/ # Assistant guidance
|
v
vMix Instance
|-- HTTP 8088: XML state and shortcut functions
`-- TCP 8099: tally and activator subscriptionsDevelopment
npm install
npm run build
npm test
npm run lint
npm run dev
npm run inspectorRecommended release verification:
npm run build
npm run typecheck
npm run lint
npm test
npm audit --audit-level=moderate
node scripts/validate-api-calls.mjs
npm pack --dry-runMCP Inspector
npm run inspector launches the MCP Inspector against the local build and opens it in your browser. What you should see:
The Inspector connects over stdio and the server reports itself as
cuescope-mcpwith the current version.The Tools tab lists the Review tools only (no control tools) unless you set the control flags in the environment.
The Resources tab lists the
vmix://URIs from the table above; readingvmix://server/statusshould show modereview.With vMix running and the Web Controller enabled, reading
vmix://state/summaryreturns your live preset summary.
Useful connection checks:
curl http://localhost:8088/api/On Windows:
Invoke-WebRequest -UseBasicParsing http://localhost:8088/api/
Test-NetConnection localhost -Port 8099Release Shape
CueScope should demonstrate value without live execution:
Connect to vMix.
Analyze the current preset.
Diagnose a realistic audio scenario.
Generate and validate a script using actual input references.
Compare before and after XML snapshots.
Keep Control Mode and High-Impact Control available but secondary.
License
CueScope Source-Available License - see LICENSE for details. Official releases may be installed and used for personal, internal, production, broadcast, educational, nonprofit, and commercial live-production workflows. Redistribution, competing products or services, hosted/managed offerings, and broader reuse require written permission from Greenhouse Ventures LLC.
Support
Built for the live production community by Greenhouse Labs.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/greenhouselabs/cuescope-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server