Skip to main content
Glama
nickbeentjes

mac-audio-router-mcp

by nickbeentjes

set_output_device

Switch macOS audio output to a named device. Check available devices with list_audio_devices before routing sound to speakers, TV, or headphones.

Instructions

Route system audio output to a specific device by name. Use list_audio_devices first to see available devices.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
device_nameYesExact name of the output device (e.g., 'Samsung TV', 'AIWA AWWS01')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full behavioral burden. It says the tool routes audio output but does not disclose whether the change is persistent, what happens if the device is unavailable, whether it affects other streams, or any permission requirements.

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

Conciseness5/5

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

Two short sentences with the action front-loaded and the prerequisite guidance immediately after. Every sentence earns its place with no redundancy.

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

Completeness4/5

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

For a simple single-parameter setter with full schema coverage and no output schema, the description covers the core purpose and the key prerequisite. It could still be more complete by noting behavior on invalid device names or whether the routing is persistent, but it is adequate.

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%, and the schema itself documents the single device_name parameter with examples. The description only restates 'by name' and does not add syntax, format, or matching semantics beyond what the schema already provides.

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

Purpose5/5

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

States a specific verb ('Route') and resource ('system audio output') with a clear scope modifier ('to a specific device by name'). This clearly distinguishes it from sibling tools like set_input_device, set_volume, and set_device_volume.

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

Usage Guidelines4/5

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

Explicitly tells the agent to call list_audio_devices first to discover valid device names, which is a clear prerequisite. It does not describe when not to use this tool or name alternative routing tools, so it lacks the full when/when-not/alternatives guidance of a 5.

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