OSC MCP Server
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., "@OSC MCP Serverset Kick channel fader to -5 dB"
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.
OSC MCP Server
MCP Server for controlling a Behringer X-Air XR18 digital mixer via Open Sound Control (OSC) protocol.
Features
18 input channels with fader, mute, EQ (4 bands), and bus sends
6 buses (monitor/aux) with fader and mute
Main LR output control
4 FX slots with send level and mute
Symbolic naming — refer to channels and buses by name (e.g. "Kick", "Drummer") instead of numbers
dB-to-float conversion — work in dB, the server handles the XR18's non-linear fader scale
Persistent connection — the server remembers the last mixer IP across sessions
Raw OSC escape hatch for any unsupported command
Related MCP server: osc-bridge
Prerequisites
Python >= 3.11
uv package manager
A Behringer XR18 (or other X-Air mixer) on your local network
Installation
git clone https://github.com/darkwings/OSC_MCP.git
cd OSC_MCP
uv syncRunning the Server
# Run via stdio (used by MCP clients)
uv run osc-mcp
# Or use the MCP inspector for interactive testing
uv run mcp dev src/osc_mcp/server.pyAdding to an MCP Client
Claude Desktop
The easiest way is to use the built-in install command:
uv run mcp install src/osc_mcp/server.py --name "OSC Mixer"Alternatively, open Claude Desktop and go to Settings > Developer > Edit Config, then add:
{
"mcpServers": {
"osc-mcp": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/OSC_MCP", "osc-mcp"]
}
}
}Restart Claude Desktop after saving.
Claude Code
claude mcp add osc-mcp -- uv run --directory /absolute/path/to/OSC_MCP osc-mcpOr manually add to .mcp.json or ~/.claude/mcp.json:
{
"mcpServers": {
"osc-mcp": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/OSC_MCP", "osc-mcp"]
}
}
}Cursor
Go to Settings > MCP Servers > Add Server and use:
Type: stdio
Command:
uv run --directory /absolute/path/to/OSC_MCP osc-mcp
Generic MCP Client
Any MCP-compatible client can connect using the stdio transport:
uv run --directory /absolute/path/to/OSC_MCP osc-mcpReplace /absolute/path/to/OSC_MCP with the actual path where you cloned the repository.
Usage
Once the server is running in your MCP client:
Connect:
connect_mixer("192.168.1.1")— the IP is saved for future sessionsName your channels:
assign_channel_name(1, "Kick"),assign_bus_name(2, "Drummer")Control:
set_channel_fader("Kick", -5),set_channel_send_to_bus("Kick", "Drummer", -10)
On subsequent sessions, the server automatically reconnects to the last known mixer IP. If the mixer is unreachable (e.g. different network), the agent is prompted to ask for the new IP.
Available Tools
Tool | Description |
| Connect to mixer at IP:port |
| Name a channel (1-18) |
| Name a bus (1-6) |
| Show all name assignments |
| Set channel level in dB |
| Mute/unmute a channel |
| Query current channel level |
| Set bus level in dB |
| Mute/unmute a bus |
| Set channel→bus send level |
| Query channel→bus send level |
| Set main LR level |
| Mute/unmute main LR |
| Set EQ band parameters |
| Enable/disable channel EQ |
| Set FX send level |
| Mute/unmute FX send |
| Query mixer info |
| Send any raw OSC message |
Running Tests
uv run pytestLicense
Apache License 2.0
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
- 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/darkwings/OSC_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server