flipper-mcp-bridge
Provides HTTP REST API endpoints for Home Assistant automation, allowing control of infrared devices via REST commands and switches integrated with Flipper Zero IR capabilities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@flipper-mcp-bridgeturn off the air conditioner"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
flipper-mcp-bridge
MCP server that exposes a USB-connected Flipper Zero as a set of tools for MCP clients (Claude Code, Home Assistant via compatible bridge, etc.). v0 focuses on IR: list/parse saved .ir files, replay buttons, capture new signals.
Tested against Momentum firmware (mntm-008). Any recent Flipper fork with the same CLI (ir tx, ir rx, storage *, loader *) should work.
v0 tools
Tool | Purpose |
| Return the Flipper's |
| List |
| Parse a saved |
| Transmit a named button from a saved |
| Transmit an ad-hoc parsed IR signal by MSB-first integer hex (e.g. |
| List built-in universal IR remotes available on the firmware (ac, tv, fans, ...) |
| List the signal names for a built-in universal remote |
| Transmit a named signal from a built-in universal remote |
| Put the Flipper in RX, capture the next remote press, append it to a |
Setup (Windows host, WSL2)
1. Forward the Flipper USB into WSL
Install usbipd-win on Windows:
winget install usbipdThen (from Windows PowerShell):
usbipd list # find the Flipper's BUSID
usbipd bind --busid <X-Y> # one-time, admin PowerShell
usbipd attach --wsl --busid <X-Y> # each replug / rebootAfter attach, the Flipper shows up in WSL as /dev/ttyACM0.
2. Grant serial access in WSL
sudo usermod -aG dialout $USERThen restart WSL so the group is active:
wsl.exe --shutdownReopen your shell. groups should now include dialout.
3. Install dependencies
From the repo root:
uv sync4. Smoke test
uv run python scripts/smoketest_readonly.pyYou should see device info, a list of files under /ext/infrared/, and parsed contents of each .ir file.
Running
MCP stdio (for Claude Code, Cursor, etc.):
uv run flipper-mcp-bridgeHTTP REST API (for Home Assistant, curl, scripts):
uv run flipper-mcp-bridge --http --port 8765Endpoints:
Method | Path | Body / Query |
|
| — |
|
| — |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Home Assistant integration
Deployment note: reachability from HA
HA needs to be able to HTTP to the bridge. Two easy setups work out of the box:
Run the bridge on the same host as HA (Pi/NUC/server with Flipper plugged in). HA hits
http://127.0.0.1:8765. Simplest.Run the bridge on any always-on Linux host on the LAN. Start it with
--host 0.0.0.0(the CLI prints a warning — there's no auth in v1, so only do this on a trusted LAN). HA hitshttp://HOST:8765.
WSL2 caveat: WSL2 uses NAT — the WSL IP isn't reachable from other hosts on the LAN. Running the bridge inside WSL2 and expecting HA on a different device to reach it requires netsh interface portproxy port-forwarding on the Windows host, or running the bridge on the Windows host directly (Python + pyserial work fine on Windows).
Configuration
Drop this into configuration.yaml:
rest_command:
flipper_humidifier_toggle:
url: "http://FLIPPER_HOST:8765/ir/send-button"
method: POST
content_type: "application/json"
payload: '{"file":"/ext/infrared/Remote.ir","button":"Humid"}'
flipper_ac_off:
url: "http://FLIPPER_HOST:8765/ir/universal/send"
method: POST
content_type: "application/json"
payload: '{"remote":"ac","signal":"OFF"}'Then in automations or scripts:
action:
- service: rest_command.flipper_humidifier_toggleFor a switch-like entity, use a RESTful switch pointed at the same /ir/send-button endpoint (state is maintained by HA since the Flipper itself doesn't expose device state).
Port selection
The bridge picks a serial device in this priority order:
Explicit
port=argument (library use only)FLIPPER_PORTenvironment variableAuto-detect: the first attached device whose USB manufacturer is "Flipper Devices Inc." (or VID:PID
0483:5740)Fallback:
/dev/ttyACM0
So in the common case you don't need to set anything. If you've got multiple CDC devices and want to pin a specific one:
FLIPPER_PORT=/dev/ttyACM1 uv run flipper-mcp-bridgeOr add env to the .mcp.json server entry.
Registering with Claude Code
The repo ships a .mcp.json at the root — Claude Code picks it up automatically when you start a session in this directory (you'll be prompted to trust it on first launch). If you'd rather register it explicitly:
claude mcp add flipper -- uv run --directory "$(pwd)" flipper-mcp-bridgeKnown limitations
Capture latency:
learn_ir_buttontakes a few seconds before the Flipper actually starts listening. Press the remote a beat after calling the tool, not immediately.Transport: CLI-over-serial only. Protobuf RPC is not wired yet. Fine for IR at human pace; may be revisited for throughput-sensitive flows.
Blocked by foreground apps: if a non-CLI app owns the Flipper (e.g. the Nightstand Clock idle screen), IR TX is blocked. The bridge tries
loader closeonce on conflict, but some apps can only be exited manually on the device.Raw IR capture not supported: unknown-protocol signals won't round-trip via
learn_ir_buttonyet.IR only: Sub-GHz, NFC, RFID, GPIO, BadUSB — none of these are wired.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dudebot/flipper-mcp-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server