Q-SYS MCP Server

Q-SYS MCP Server

Enables control and monitoring of Q-SYS audio/video systems through WebSocket connection. Provides tools for discovering components, reading/setting control values, and managing system status with built-in protection for critical controls.

Category
Visit Server

README

Q-SYS MCP3.0 Server

Ultra-minimal MCP server for Q-SYS control. ~400 lines, 3 dependencies, 5 tools.

Quick Start

# Install
npm install

# Run with environment variable
QSYS_HOST=192.168.1.100 npm start

# Run with debug logging
npm run dev

Configuration

Environment Variables

QSYS_HOST=192.168.1.100    # Q-SYS Core IP address
QSYS_PORT=443               # WebSocket port (default: 443)
QSYS_AUTO_CONNECT=true      # Auto-connect on startup
QSYS_MCP_DEBUG=true         # Enable debug logging
QSYS_POLLING_INTERVAL=350   # Control polling interval in ms

Config File

The server saves successful connections to ~/.qsys-mcp/last-connection.json and auto-connects on next startup.

Tools

qsys_connect

Connect to Q-SYS Core with auto-reconnection.

{
  "host": "192.168.1.100",
  "port": 443,
  "secure": true,
  "pollingInterval": 350
}

qsys_discover

List components and their controls.

{
  "component": "Gain.*",     // Optional regex filter
  "includeControls": true    // Include control details
}

qsys_get

Read control values.

{
  "controls": ["Gain_1.gain", "Gain_1.mute"]
}

qsys_set

Update control values with protection.

{
  "controls": [
    {
      "path": "Gain_1.gain",
      "value": -10,
      "force": false    // Required for protected controls
    }
  ]
}

qsys_status

Get connection and system status.

{
  "detailed": false    // Include component inventory
}

Protected Controls

These patterns require force: true to modify:

  • Master.* - System-wide master controls
  • Emergency.* - Emergency systems
  • *.power - Power controls
  • SystemMute - Venue-wide mute

Features

  • Auto-reconnection: Exponential backoff (1s, 2s, 4s, 8s, 16s)
  • Global cache: 1-second discovery cache, clears on reconnect
  • Parallel operations: Batch updates execute simultaneously
  • Type validation: Enforces correct types for Boolean, Float, Integer
  • Range validation: Respects ValueMin/ValueMax limits
  • Helpful errors: Suggests available components/controls when not found

Performance

  • Tool response: <10ms overhead
  • Memory usage: <50MB
  • Startup time: <500ms
  • Connection time: <1 second
  • Batch operations: Parallel execution

Claude Desktop Configuration

Add to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Option 1: Minimal Configuration (Manual Connect)

Use this for flexibility with multiple Q-SYS systems:

{
  "mcpServers": {
    "qsys-mcp3": {
      "command": "node",
      "args": ["/absolute/path/to/MCP3.0/index.js"]
    }
  }
}

With this config, you'll need to connect manually in Claude:

"Connect to Q-SYS Core at 192.168.50.150"

Option 2: Auto-Connect Configuration

Use this for dedicated single-system setups:

{
  "mcpServers": {
    "qsys-mcp3": {
      "command": "node",
      "args": ["/absolute/path/to/MCP3.0/index.js"],
      "env": {
        "QSYS_HOST": "192.168.50.150",
        "QSYS_PORT": "443",
        "QSYS_AUTO_CONNECT": "true",
        "QSYS_MCP_DEBUG": "false"
      }
    }
  }
}

Replace /absolute/path/to/MCP3.0/index.js with the actual path to your index.js file. Replace 192.168.50.150 with your Q-SYS Core IP address.

Testing

Manual testing checklist:

  1. Connect to Q-SYS Core
  2. Verify auto-reconnection (disconnect/reconnect network)
  3. Discover components
  4. Get/set control values
  5. Test protected controls
  6. Verify batch operations
  7. Monitor memory usage

Agent Prompts

See agent-mcp3-prompts.md for example system prompts for:

  • AV Room Controller Assistant
  • Audio System Troubleshooting Agent
  • Event Production Coordinator

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured