Skip to main content
Glama
naotochan

polynodes-osc-mcp

by naotochan

polynodes_set_playback_rate

Idempotent

Set the playback rate for PolyNodes agents at macro, meso, or micro level by providing a rate value; returns JSON confirmation.

Instructions

Set playback rate for agents. Macro: 0.3-10, Meso: 0.3-20, Micro: 0.3-30.

Args: params: level and value.

Returns: JSON confirmation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, destructiveHint=false and openWorldHint=true, so the mutation/idempotency profile is covered externally. The description adds the value constraints (0.3-10 / 0.3-20 / 0.3-30 per granularity level), which is useful, but says nothing about units (is 1.0 normal speed?), clamping behavior out of range, or whether the rate is a multiplier or a tempo-relative setting.

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?

Front-loaded with the action and the key range constraints, then structured Args/Returns. The 'Returns: JSON confirmation' line is nearly content-free, but the overall text is tight with little waste.

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

Completeness3/5

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

An output schema exists, so the return value need not be explained. Still missing for a mutation tool with openWorldHint: what 'value' means physically (multiplier vs ratio vs semitones) and how out-of-range input is handled. Adequate but with clear gaps.

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 reported at 0%, so the description must carry the parameter burden, and it does partially: it names the two subfields (level, value) and maps each level to its numeric range. However, it adds no interpretation of the value (units, min/max semantics, what happens out of range), so it only partly compensates.

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?

States a specific verb+resource ('Set playback rate for agents') and adds per-level range detail, so the intent is immediately clear. It does not explicitly distinguish itself from the very similarly named sibling polynodes_set_playback_rate_mod_range, so an agent must infer which one applies.

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 statement of when to use this tool, when not to, or which sibling to prefer. The near-identical name polynodes_set_playback_rate_mod_range makes this omission costly, since the agent gets no routing guidance between the two.

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