Skip to main content
Glama
synopsys0

PostFader V10 — FL Studio MCP Server

fl_set_recording

Destructive

Set FL Studio recording to an exact on/off state, avoiding toggle mismatches. Use to arm or disarm recording reliably in a project.

Instructions

Set recording absolutely; FL's toggle is dispatched at most once.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
recordingYesAbsolute transport recording-arm state.
expected_beforeNoOptional expected recording 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
verifiedYes
warningsNo
applied_atYes
project_savedNo
bridge_commandNotransport.set_recording
schema_versionNo1.0
after_recordingNo
before_recordingNo
undo_point_createdNo
verification_basisNoreadback_on_a_later_fl_idle_tick
requested_recordingYes
session_fingerprintNo
verification_summaryYes
expected_before_appliedNo
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?

Annotations already declare destructiveHint and readOnlyHint, but the description adds behavioral nuance: 'FL's toggle is dispatched at most once' reveals that the tool may not act if the state is already as requested, and it's not a simple toggle. This goes beyond the annotations, adding useful context about how the operation is executed.

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 a single, tightly written sentence that conveys the core purpose and a key behavioral detail without fluff. It is front-loaded and every word earns its place.

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?

For a write operation with concurrency guards, the description covers the main behavioral trait (absolute set) and the schema covers parameters and output. It does not explicitly mention failure modes (e.g., stale session fingerprint), but these are described in the schema. The presence of an output schema further reduces the need to explain return values.

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?

The schema already provides full descriptions for all parameters (100% coverage), including the concurrency guard and expected state. The description adds no additional parameter information, so baseline 3 is appropriate since the schema carries the semantic burden.

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 clearly states the tool sets the recording state and uses 'absolutely' to indicate a deterministic set rather than a toggle. The resource is 'recording', which is distinct from sibling tools like fl_set_playing or fl_stop, so purpose is clear. However, it doesn't explicitly contrast with alternatives, so not a 5.

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 alternatives. It doesn't mention when to prefer this over a simple toggle or any exclusions. The description implies an absolute set but doesn't state conditions for use.

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