Flapi MCP Server

Remotely control FL Studio using the MIDI Controller Scripting API

Local serverstdioPython

What is the Flapi MCP server?

Most developer tooling work still happens through a UI a human drives. Flapi MCP server moves it into the conversation instead. Remotely control FL Studio using the MIDI Controller Scripting API.

The short version

Flapi (pron. "flappy") is a remote control server for FL Studio, using the MIDI Controller Scripting API. It allows you to execute Python code in FL Studio from outside of FL Studio by modifying functions in the FL Studio API Stubs package to forward their calling information to the Flapi server, where they are executed, with their values returned to the client.

Getting it running

flapi on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by Miguel Guthridge; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How to install the Flapi MCP server

{
  "mcpServers": {
    "flapi": {
      "command": "uvx",
      "args": ["flapi"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Frequently asked questions

It connects Flapi to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Flapi directly.