Behringer WING MCP

Behringer WING MCP

Enables controlling Behringer WING digital mixers via OSC, supporting fader, mute, pan, and name operations on strips, with raw OSC access for unsupported parameters.

Category
访问服务器

README

Behringer WING MCP

Model Context Protocol (MCP) server for Behringer WING digital mixers.

The server exposes a small, practical toolset for controlling a WING, WING Compact, or WING Rack from an MCP client. It talks to the console over OSC/UDP and uses stateless request/response calls so it can coexist with other WING integrations on the same network.

Current status

This is an early open-source implementation. The typed tools cover common strip operations:

  • set fader level
  • adjust fader level relatively
  • mute or unmute a strip
  • set pan
  • set scribble-strip name
  • find/list strips by scribble-strip name
  • set bus send level from typed source/destination fields
  • read a small strip status snapshot
  • read or write a raw OSC address as an escape hatch

The code can be built and tested without a console. Actual OSC calls require a WING on the same network.

Requirements

  • Node.js 20 or newer
  • A Behringer WING-family console reachable on the network
  • OSC enabled and unlocked on the console

The WING OSC service uses UDP port 2223 by default. The console also has a TCP control surface on port 2222, but this MCP server uses OSC only.

Install from source

git clone https://github.com/ralfferreira/behringer-wing-mcp.git
cd behringer-wing-mcp
npm ci
npm run build

Configure the console

On the console, open the remote/network settings and make sure:

  • OSC remote control is enabled
  • OSC remote lock is off
  • the console has an IP address reachable from the machine running the MCP server

Avoid exposing the console network to the public internet. The OSC control surface is intended for trusted local networks.

Configure an MCP client

Build the project first, then point your MCP client at dist/index.js.

Example:

{
  "mcpServers": {
    "wing": {
      "command": "node",
      "args": ["/absolute/path/to/behringer-wing-mcp/dist/index.js"],
      "env": {
        "WING_HOST": "192.168.1.50"
      }
    }
  }
}

Windows example path:

{
  "mcpServers": {
    "wing": {
      "command": "node",
      "args": ["C:/Users/USER/Documents/Code/behringer-wing-mcp/dist/index.js"],
      "env": {
        "WING_HOST": "192.168.1.50"
      }
    }
  }
}

Environment variables

Variable Required Default Description
WING_HOST yes - Console IP address or hostname.
WING_PORT no 2223 OSC UDP port.
WING_TIMEOUT_MS no 1500 Timeout for one OSC request/response.
WING_READ_ONLY no false Set to true, 1, yes, or on to block write tools.

Tools

Tool Description
set_fader Set a strip fader level in dB.
adjust_fader Change a strip fader relatively by a dB delta.
set_mute Mute or unmute a strip.
set_pan Set strip pan from -100 left to 100 right.
set_name Set a strip scribble-strip name.
get_strip_status Read name, fader, mute, and pan for one strip.
find_strip_by_name Search scribble-strip names across strip kinds.
list_strips Read a compact live list of strip IDs and names, optionally with status.
set_bus_send Set a channel, aux, or bus send level to a bus destination.
osc_get Read any raw OSC address.
osc_set Write any raw OSC address, then read it back.

Supported typed strip kinds:

Kind Range Notes
ch 1-40 Main input channels.
aux 1-8 Aux input channels. Together, ch + aux map to the WING-family 48 input channels.
bus 1-16 Buses.
main 1-4 Main buses.
mtx 1-8 Matrices.
dca 1-16 DCAs in the remote-control model.

Natural-language helper examples

These tools are meant to let MCP clients work from plain prompts without needing to know every OSC leaf.

adjust_fader kind="ch" index=12 delta_db=-3
find_strip_by_name query="pastor mic"
list_strips kinds=["ch","aux","bus"] include_status=false
set_bus_send source_kind="ch" source_index=1 bus=5 db=-12 enabled=true

find_strip_by_name returns ranked matches with kind, index, id, name, and score. If multiple matches have the same top score, prefer calling write tools with an explicit kind and index.

list_strips performs live request/response reads. By default it reads strip names only for a compact map of IDs to labels; set include_status=true to also read fader, mute, and pan values.

set_bus_send writes /<source>/<index>/send/<bus>/lvl and accepts source kinds ch, aux, and bus. When enabled is provided, it also writes the send on state. Like every write helper, it is blocked by WING_READ_ONLY=true.

Raw OSC examples

Use raw OSC tools for parameters not yet covered by typed tools:

osc_get address="/ch/1/fdr"
osc_set address="/ch/1/mute" value=1 force_type="i"
osc_set address="/ch/1/name" value="Lead Vox" force_type="s"

Raw writes can affect a live mix immediately. Use WING_READ_ONLY=true when you only want to inspect values.

Development

npm ci
npm test
npm run build

Useful scripts:

  • npm run build compiles TypeScript into dist/
  • npm test builds and runs offline unit tests
  • npm run dev starts TypeScript watch mode
  • npm start runs the built server

To try the server with the MCP Inspector:

WING_HOST=192.168.1.50 npx @modelcontextprotocol/inspector node dist/index.js

PowerShell:

$env:WING_HOST = "192.168.1.50"
npx @modelcontextprotocol/inspector node dist/index.js

Project layout

src/index.ts       MCP server and tool definitions
src/osc.ts         Minimal OSC encoder/decoder and UDP client
src/wing.ts        WING address helpers and typed operations
src/*.test.ts      Offline tests for OSC and address helpers

References

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选