OSC MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| connect_mixerB | Connect to the XR18 mixer at the given IP and port (default 10024). |
| assign_channel_nameB | Give a channel (1-18) a symbolic name, e.g. channel 1 = 'Kick'. |
| assign_bus_nameA | Give a bus (1-6) a symbolic name, e.g. bus 2 = 'Drummer'. |
| list_namesA | Show all current channel and bus name assignments. |
| set_channel_faderB | Set an input channel's fader level in dB. Channel can be a number (1-18) or name. |
| set_channel_muteA | Mute or unmute an input channel. Channel can be a number (1-18) or name. |
| get_channel_faderC | Query the current fader level of an input channel. |
| set_bus_faderB | Set a bus master fader level in dB. Bus can be a number (1-6) or name. |
| set_bus_muteA | Mute or unmute a bus. Bus can be a number (1-6) or name. |
| set_channel_send_to_busC | Set how much of a channel goes to a specific bus/monitor in dB. |
| get_channel_send_to_busB | Query the current send level from a channel to a bus. |
| set_main_faderB | Set the main LR output fader level in dB. |
| set_main_muteB | Mute or unmute the main LR output. |
| set_channel_eqB | Set EQ parameters for a channel band (1-4). |
| set_channel_eq_onB | Enable or disable EQ on a channel. |
| set_fx_send_faderB | Set an FX send fader level in dB (slot 1-4). |
| set_fx_send_muteA | Mute or unmute an FX send (slot 1-4). |
| get_mixer_infoB | Query mixer info via /xinfo. |
| send_raw_oscC | Send a raw OSC message. Escape hatch for any OSC command. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Each tool targets a distinct operation (e.g., fader, mute, EQ, send) on a specific resource (channel, bus, main, FX). Even similar tools like set_channel_fader and set_channel_mute are clearly differentiated by their purpose.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., assign_channel_name, set_channel_fader, get_channel_send_to_bus). There is no mixing of conventions or ambiguous verbs.
With 19 tools covering channel, bus, main, FX, naming, info, and a raw OSC escape, the count is well-scoped for a mixer control server. It includes all essential operations without being bloated.
The tool set covers core mixer operations (fader, mute, EQ, sends, main). Missing features like compressor or gate are offset by the send_raw_osc escape hatch, preventing dead ends.