PostFader for VS Code
io.github.synopsys0/postfader-fl-studio-mcp
FL Studio MCP server: 134 tools for mixing, MIDI, sound selection, production runs, and review.
client:VS Code
transport:stdio
runtime:pypi
Install PostFader in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fl-bridge-enable-midi",
"description": "FL_BRIDGE_ENABLE_MIDI",
"password": true
},
{
"type": "promptString",
"id": "fl-bridge-midi-port",
"description": "FL_BRIDGE_MIDI_PORT",
"password": true
},
{
"type": "promptString",
"id": "fl-studio-user-data-dir",
"description": "FL_STUDIO_USER_DATA_DIR",
"password": true
}
],
"servers": {
"postfader-fl-studio-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"postfader-fl-studio-mcp"
],
"env": {
"FL_BRIDGE_ENABLE_MIDI": "${input:fl-bridge-enable-midi}",
"FL_BRIDGE_MIDI_PORT": "${input:fl-bridge-midi-port}",
"FL_STUDIO_USER_DATA_DIR": "${input:fl-studio-user-data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs