Skip to main content
Glama
synopsys0

PostFader V10 — FL Studio MCP Server

fl_set_mixer_volume

Destructive

Set a mixer fader's volume by track index and normalized value, then verify the actual readback. Guards master bus access and checks expected current position.

Instructions

Set one mixer fader and report the readback FL gave on a later tick.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYesZero-based mixer index. Index 0 is Master and is refused unless allow_master is true.
allow_masterNoDeliberately target the master bus at index 0.
expected_beforeNoOptional expected current fader position; refuse if it changed.
volume_normalizedYesFader position, 0.0 silent to 1.0 maximum. 0.8 is FL Studio's 0 dB default.
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
verifiedYes
warningsNo
applied_atYes
track_indexYes
project_savedNo
bridge_commandNomixer.set_volume
schema_versionNo1.0
after_volume_dbNo
targeted_masterNo
before_volume_dbNo
undo_point_createdNo
verification_basisNoreadback_on_a_later_fl_idle_tick
session_fingerprintNo
verification_summaryYes
after_volume_normalizedNo
expected_before_appliedNo
before_volume_normalizedNo
requested_volume_normalizedYes
session_precondition_appliedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv10.0.0

TDQS

A3.6/5.0
Behavior4/5

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

The description discloses a key behavioral trait beyond annotations: it reports the readback on a later tick, implying an asynchronous or delayed verification step. Annotations already mark it as destructive and non-read-only, so the description adds useful context about what happens after the write. The phrase 'later tick' is somewhat vague but still provides real behavioral insight.

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?

The description is one compact sentence with no filler. The primary action ('Set one mixer fader') is front-loaded, and the additional reporting behavior is included without wasted words.

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?

Given the rich schema, annotations, and output schema, the description completes the picture by adding the verification/readback behavior. It does not repeat schema details, which is appropriate. The main gap is the lack of explicit alternative routing to fl_set_mixer_volume_db, but that is a usage-guidelines issue rather than a completeness gap.

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%, with each parameter well-documented (e.g., 'Fader position, 0.0 silent to 1.0 maximum', master refusal, concurrency guard). The description itself adds no parameter meaning beyond what the schema already provides, so it stays at the baseline for high coverage.

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 specific verb and resource: 'Set one mixer fader', and adds the distinctive behavior of reporting the readback. It clearly identifies what the tool does, but it does not explicitly distinguish itself from the closely related sibling fl_set_mixer_volume_db, which also sets mixer volume. The normalized vs. dB distinction is left to the parameter schema rather than the description.

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 tool versus alternatives. The description mentions 'one mixer fader' but does not explain when to use the normalized version over fl_set_mixer_volume_db, or any other mixer setter. No exclusions or alternative routing are provided.

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