Skip to main content
Glama
gdeber

XR18 MCP Server

by gdeber

xr18_read_meters

Read audio meter levels in dB from an XR18 mixer. Specify a batch ID 0-9 to retrieve meter data, with batch 0 using channels 0-31.

Instructions

Read meter batch 0-9 in dB. Batch 0 requires zero-based channel 0-31.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channelNo
batch_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral burden. It discloses useful behavior: results are in dB and channel indexing is zero-based with a 0-31 range. It does not explicitly state that the operation is read-only or describe any other side effects, but 'Read' and the meter context imply a safe query.

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 compact sentences deliver the essential scope and the critical indexing constraint without filler. The information is front-loaded and every clause earns its place.

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 read tool with an output schema, the description covers the key invocation requirements: valid batch range, unit, and the conditional channel requirement. It does not specify what channel means for batches 1-9 or whether it is ignored, but the schema's default null and the stated batch-0 exception make the behavior reasonably inferable.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics: batch_id accepts 0-9, channel is zero-based with range 0-31, and channel is required specifically when batch_id is 0. This goes beyond the bare schema by clarifying valid ranges and conditional requirements.

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 clearly identifies the action (read) and resource (meter batch 0-9 in dB), which distinguishes it from generic tools like xr18_get and other channel/snapshot commands. It could be slightly more explicit about what a 'meter batch' represents, but the core purpose is unambiguous.

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 explicit guidance on when to prefer this tool over alternatives, and no sibling tools are mentioned. The only usage hint is the batch-0 channel requirement, which is parameter-specific rather than decision-oriented.

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