Skip to main content
Glama
synopsys0

PostFader V10 — FL Studio MCP Server

fl_set_mixer_send

Destructive

Create or remove a mixer send route between two tracks. Set whether the route exists, then adjust its level separately; optionally verify current state before changing.

Instructions

Route one mixer track to another, or stop routing it there.

A stated state, never a toggle. Sending *to* Master needs no flag; only
sending *from* Master does. Set the amount with `fl_set_mixer_send_level`
afterwards -- this call only decides whether the route exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYesTrue to create the send, False to tear it down.
track_indexYesZero-based index of the sending track.
allow_masterNoRequired only to send FROM track 0.
expected_beforeNoOptional expected current route state; refuse if it changed.
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.
destination_track_indexYesZero-based index of the receiving track.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
verifiedYes
warningsNo
applied_atYes
track_indexYes
after_enabledNo
project_savedNo
before_enabledNo
bridge_commandNomixer.set_send
schema_versionNo1.0
targeted_masterNo
level_normalizedNo
requested_enabledYes
undo_point_createdNo
verification_basisNoreadback_on_a_later_fl_idle_tick
session_fingerprintNo
verification_summaryYes
destination_track_indexYes
expected_before_appliedNo
session_precondition_appliedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv10.0.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already flag mutation and destructiveness; the description adds genuinely non-obvious runtime behavior: it is 'a stated state, never a toggle,' has an asymmetric Master-flag requirement, and scopes effects to route existence only. It doesn't add caveats about expected_before/session_fingerprint, but the schema covers those, so the added behavior context goes beyond annotations without contradiction.

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?

Four short sentences front-load the core action and then add only the behavioral details an agent needs; every sentence earns its place, and the call-to-sibling for level setting is appended without bloat.

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

Completeness5/5

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

Combined with a rich schema that documents all six parameters and a clear output schema, the description supplies the missing operating semantics: route existence vs. level, absolute state, and the Master exception. No decision-relevant gap remains for selecting or calling the tool correctly.

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 coverage is already 100%, so the baseline is a 3, but the description adds semantic value for the boolean parameter: 'A stated state, never a toggle' tells the agent that enabled is absolute, not a flip. It also clarifies allow_master's asymmetry ('Sending to Master needs no flag; only sending from Master does'), complementing the schema's terse 'Required only to send FROM track 0.'

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 opening sentence names both actions ('Route one mixer track to another, or stop routing it there') with a specific verb and resource, making the tool's function immediately clear. It also distinguishes this from level-setting via a terse but precise scoping statement, so an agent won't confuse it with sibling mixer tools.

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

Usage Guidelines5/5

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

It explicitly directs the agent to use fl_set_mixer_send_level for the amount and clarifies that this call 'only decides whether the route exists,' which defines the boundary between the two tools. The master-flag guidance ('only sending from Master does') is a concrete when-to-include-flag rule.

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