Skip to main content
Glama
synopsys0

PostFader V10 — FL Studio MCP Server

fl_set_playlist_track_state

Destructive

Set mute, solo, or selection state for a specific Playlist track in FL Studio, with an optional expected-state guard to avoid conflicting updates.

Instructions

Set Playlist states; toggle-only selection is dispatched at most once.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mutedNoAbsolute mute state.
soloedNoAbsolute solo state.
selectedNoAbsolute selection state.
track_indexYesOne-based Playlist track index.
expected_beforeNoOptional expected mute/solo/selection state.
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
track_indexYes
mute_verifiedNo
project_savedNo
solo_verifiedNo
bridge_commandNoplaylist.set_state
schema_versionNo1.0
requested_mutedNo
requested_soloedNo
requested_selectedNo
selection_verifiedNo
undo_point_createdNo
verification_basisNoreadback_on_a_later_fl_idle_tick
session_fingerprintNo
verification_summaryYes
expected_before_appliedNo
session_precondition_appliedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv10.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false, and idempotentHint=false, so the write/non-idempotent nature is carried by structured data. The description adds one behavioral nuance: 'toggle-only selection is dispatched at most once,' which is helpful but not elaborated (e.g., does this mean repeated selection toggles are coalesced?). It doesn't mention the concurrency guard or what happens to unspecified states, but annotations and schema partially cover the safety profile.

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 sentences, purpose first, with zero filler. The behavioral nuance is attached in a clear second clause. It is front-loaded and economical.

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?

The tool has six parameters with optional fields and a concurrency guard, but the description does not explain what null means for mute/solo/selected (presumably 'leave unchanged'), nor does it clarify the interaction between expected_before and session_fingerprint. Given the high schema coverage and annotations, an agent can probably call it correctly, but the absence of null semantics and a more explicit statement about the effect of a write is a measurable 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% and each parameter has a descriptive line (e.g., 'Absolute mute state,' 'Optional bridge/project-session fingerprint'). The description adds value on the 'selected' behavior with the at most once note, but does not illuminate expected_before or session_fingerprint beyond schema text. Since the schema carries the parameter burden, the description plates at the baseline 3.

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 Playlist states') and the schema confirms it covers mute, solo, and selected states on a playlist track. Though 'Playlist states' is a bit terse, the tool name and sibling context (e.g., fl_set_playlist_track_identity) distinguish it from identity-setting tools. It doesn't enumerate the exact states in the description, but the resource and verb are sufficiently clear.

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?

The description offers no explicit guidance on when to prefer this tool over alternatives. It doesn't mention that it operates on Playlist tracks (vs mixer tracks), when to use the expected_before/session_fingerprint concurrency guards, or how it differs from identity manipulation. The single sentence is behavioral, not navigational. For a mutation tool with many siblings, this is a clear gap.

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