Skip to main content
Glama
synopsys0

PostFader V10 — FL Studio MCP Server

fl_set_channel_pitch

Destructive

Set a channel's pitch to any normalized value between -1 and 1, then receive the resulting pitch in normalized and semitone units. Enables precise pitch adjustment in FL Studio.

Instructions

Set normalized channel pitch and report normalized/semitone readback.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channel_indexYesGlobal channel index.
expected_beforeNoOptional fingerprint and/or pitch guard.
pitch_normalizedYesAbsolute FL channel pitch from -1.0 to 1.0.
session_fingerprintNoOptional bridge/project-session fingerprint from a recent read. The write refuses after bridge reload or a reported project load. This is a concurrency guard, not authentication or a durable project identity.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
afterYes
beforeYes
verifiedYes
warningsNo
applied_atYes
index_scopeNoglobal
channel_indexYes
project_savedNo
bridge_commandNochannel.set_pitch
schema_versionNo1.0
undo_point_createdNo
verification_basisNoreadback_on_a_later_fl_idle_tick
session_fingerprintNo
verification_summaryYes
expected_before_appliedNo
requested_pitch_normalizedYes
session_precondition_appliedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv10.0.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already communicate that this is mutating (readOnlyHint=false) and destructive (destructiveHint=true). The description adds the concrete mutation and the normalized/semitone readback, but it does not disclose any extra side effects, irreversibility, or how the optional guards affect execution.

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?

One compact sentence with no filler: it states the action and the readback in a front-loaded way. Every word earns its place.

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?

For a 4-parameter setter with full schema coverage and an output schema, the core operation is clear. However, it lacks context about when to set pitch in a workflow, how it interacts with open-world state, or what the optional guards protect against beyond what the schema already says.

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 the schema already documents all parameters including channel_index, pitch_normalized range, expected_before, and session_fingerprint. The description adds no parameter-level meaning beyond naming the pitch resource, so the baseline 3 is appropriate.

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?

The description names a specific verb ('Set'), a precise resource ('normalized channel pitch'), and the additional readback behavior. This is enough to distinguish it from sibling setters like fl_set_channel_mix, fl_set_channel_solo, or fl_set_plugin_param.

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?

No guidance is given on when to use this tool versus the many other fl_set_* tools, nor are preconditions stated such as the project being loaded or the channel index being valid. The only usage signal is the tool name and schema.

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

Deploy Server

Other Tools