Skip to main content
Glama
nickbeentjes

mac-audio-router-mcp

by nickbeentjes

configure_zone

Create or update an audio zone with input, output, and volume settings for managing multi-room or multi-purpose macOS audio routing.

Instructions

Create or update an audio zone with a specific output device, input device, and volume level. Zones let you manage multi-room or multi-purpose audio routing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesHuman-readable zone name
volumeNoZone volume level
zone_idYesUnique zone identifier (e.g., 'salon', 'bridge', 'cockpit')
descriptionNoWhat this zone is used for
input_deviceNoInput device (microphone) name to assign to this zone
output_deviceNoOutput device name to assign to this zone

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It implies upsert behavior via 'create or update', but says nothing about whether omitting a parameter on update leaves it unchanged or clears it, whether the operation is reversible, what permissions are required, or what is returned. For a mutation tool with zero annotation coverage, that is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two compact sentences with no redundancy, and the core action is front-loaded. The second sentence about multi-room routing is mild context that could be trimmed but does help frame the domain.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has six parameters, upsert semantics, no annotations, and no output schema, yet the description never clarifies update-vs-create behavior, partial-update rules, or failure modes. An agent could call it but would not know the consequences of omitting optional fields.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so every one of the six parameters (including the required zone_id and name) is already documented in the schema. The description echoes output device, input device, and volume but adds no format, constraint, or default information beyond the schema, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb pair (create or update) and a specific resource (audio zone), plus the fields it manages (output device, input device, volume). It does not, however, differentiate itself from siblings like set_output_device, set_input_device, set_volume, or activate_zone, which overlap heavily with the operations it describes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this composite tool versus the granular siblings (set_volume, set_output_device, set_input_device). The presence of 'Create or update' hints at lifecycle use but never states prerequisites, exclusions, or the alternative tools an agent should prefer for single-field changes.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.