DDC/CI Control Bridge MCP Server

Control monitor brightness, contrast, power and input via DDC/CI with MCP and MQTT support.

Local serverstdioGo

What is the DDC/CI Control Bridge MCP server?

Control monitor brightness, contrast, power and input via DDC/CI with MCP and MQTT support. That is what the ddc/ci control bridge mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  • DDC/CI Monitor Control — Read and write VCP codes to control monitor brightness, contrast, input source, and more
  • Model Context Protocol (MCP) — Server with resources and tools for AI/agent integration
  • MQTT Client — Connect to any MQTT broker for IoT/automation platforms
  • Home Assistant auto-discovery support
  • Generic MQTT pub/sub for custom integrations
  • Cross-Platform — Works on Windows, Linux, and macOS

The tools it exposes

The server publishes 8 tools. What each one is for:

  • get_vcp_code — Read a specific VCP code value
  • set_vcp_code — Write a value to a VCP code
  • get_brightness — Get monitor brightness (0-100)
  • set_brightness — Set monitor brightness (0-100)
  • refresh_monitors — Re-scan monitors and VCP capabilities
  • Installation — Download the binary for your platform from GitHub Releases:
  • Configuration — 2. Edit .env and configure: bash DDC_API_KEY=your-secret-api-key-here
  • Build — The Build tool exposed by this server

Getting it running

Installation goes through your MCP client rather than a global install: point it at ddc-ci-control-bridge on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: MQTT_ENABLED, MQTT_HOST, MQTT_PORT, FASTMCP_API_KEY, DDC_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • DDC/CI Support: Your monitor must support DDC/CI (most modern monitors do) - DDC/CI Enabled: Enable DDC/CI in your monitor's OSD settings - Permissions: On Linux, you may need to add your user to the i2c group

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. DDC/CI Control Bridge's toolset — get_vcp_code, set_vcp_code, get_brightness and 5 more — is a fair guide to whether it matches your workflow. It is maintained by Defozo; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_vcp_codeRead a specific VCP code value
set_vcp_codeWrite a value to a VCP code
get_brightnessGet monitor brightness (0-100)
set_brightnessSet monitor brightness (0-100)
refresh_monitorsRe-scan monitors and VCP capabilities
InstallationDownload the binary for your platform from [GitHub Releases](https://github.com/Defozo/ddc-ci-control-bridge/releases):
Configuration2. Edit .env and configure: bash DDC_API_KEY=your-secret-api-key-here
BuildThe Build tool exposed by this server.

How to install the DDC/CI Control Bridge MCP server

{
  "mcpServers": {
    "ddc-ci-bridge": {
      "command": "C:\\path\\to\\ddc-ci-bridge-win.exe",
      "args": [],
      "env": {
        "MQTT_ENABLED": "false"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • DDC/CI Support: Your monitor must support DDC/CI (most modern monitors do) - DDC/CI Enabled: Enable DDC/CI in your monitor's OSD settings - Permissions: On Linux, you may need to add your user to the i2c group
VariableDescriptionRequired
MQTT_ENABLEDConfiguration value read at startup.Optional
MQTT_HOSTEndpoint or connection string the server talks to.Optional
MQTT_PORTConfiguration value read at startup.Optional
FASTMCP_API_KEYCredential the server authenticates with.Yes
DDC_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use DDC/CI Control Bridge to get vcp code.
  • Use DDC/CI Control Bridge to set vcp code.
  • Use DDC/CI Control Bridge to get brightness.

Frequently asked questions

It connects DDC/CI Control Bridge to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (get_vcp_code, set_vcp_code, get_brightness, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with DDC/CI Control Bridge directly.