Control Tidbyt/Tronbyt LED displays: push text, images, and apps; brightness and night mode.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Let your AI assistant put things on your LED sign.
If you have a Tidbyt or Tidbyt-style LED matrix display managed by a self-hosted tronbyt/server, this connects it to Claude (or any other AI tool that speaks MCP, the open standard for giving assistants access to tools). Once installed, your display becomes something you can just talk to your assistant about:
"Put BREAD'S DONE on the sign in amber." "Dim the display to 20% and turn on night mode from 10pm to 7am." "What apps are on the sign right now? Disable the stock ticker." "Show the clock app for a bit."
The assistant handles the rest β rendering text into the display's pixel format, talking to your server, managing the app rotation. Everything runs on your own machine against your own server; nothing goes through any cloud service.
tronbyt-mcp is a small MCP server that wraps tronbyt/server's documented
REST API. Your MCP client (Claude
Code, Claude Desktop, and friends) launches it locally and talks to it over stdio; it
talks to your Tronbyt server over HTTP with a device API key.
In the Tronbyt web UI, open your device's settings and copy (or generate) its API key. Keys are scoped to a single device β one key, one display.
Claude Code (one command):
Claude Desktop: edit the config file β
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,
Windows: %APPDATA%\Claude\claude_desktop_config.json β and add:
Then restart Claude Desktop.
Any other MCP client: configure a stdio server with command npx, args
["-y", "tronbyt-mcp"], and the two environment variables above.
From source (instead of npx):
Then use node /path/to/tronbyt-mcp/dist/index.js as the server command in your MCP
client config (same environment variables).
Multiple displays? API keys are per-device, so add one entry per display
(tronbyt-kitchen, tronbyt-office, β¦), each with its own key.
Ask your assistant something like "List my Tronbyt devices." You should get back your
display with its brightness, night mode, and app list. (In Claude Code, /mcp also
shows the server and its tools.)
| Env var | Required | Default | Notes |
|---|---|---|---|
TRONBYT_BASE_URL | yes | β | Your tronbyt/server, e.g. http://tronbyt.local:8000 |
TRONBYT_API_KEY | yes | β | Per-device API key from the Tronbyt web UI |
TRONBYT_TIMEOUT_MS | no | 10000 | Per-request timeout |
You don't call these directly β your assistant picks the right tool from your request β but this is what it has to work with:
| Tool | What it does |
|---|---|
list_devices | Devices visible to the key: brightness, night mode, pinned app, last seen |
update_device | Set brightness, rotation interval, night/dim mode, pinned app |
reboot_device | Reboot the display |
list_installations | Apps installed on the device, with state and config |
update_installation | Enable/disable, pin/unpin, or retime an installation |
delete_installation | Remove an installation and its rendered images |
push_app | Render a server-side app (with optional config) and show it |
push_image | Push a base64 WebP (64Γ32, or 128Γ64 for wide displays) straight to the display |
push_text | Render text to a display-sized WebP locally and push it |
Push tools take background: false (default) interrupts the display and shows the
push immediately; true saves it into the rotation without interrupting. When a key
sees exactly one device (the normal case), device_id never needs to be specified.
push_textText is rendered with the Tom Thumb
3Γ5 pixel font, word-wrapped and centered. Printable ASCII only; \n forces a line
break. Colors are hex (#ffcc00), default white on black.
Canvas size is detected from the device type (size: "auto"): standard displays get
64Γ32, wide/2x displays (tronbyt_s3_wide, raspberrypi_wide) get 128Γ64. On wide
displays the font is doubled by default β same 16 chars Γ 5 lines, twice the pixels.
Pass text_size: "small" for native-size glyphs (32 chars Γ 10 lines), or override
the detection entirely with size: "64x32" / "128x64".
claude mcp remove tronbyt"tronbyt" entry from the config
file and restart the client.npx, a
cached copy may linger under ~/.npm/_npx; it's small and harmless, or clear it
with npm cache clean --force.Smoke test against a real server (non-destructive β pushes to the rotation in background mode, then deletes the installation). Run from the repo root after a build:
update_firmware_settings β deliberately excluded; a bad value can leave a display
unreachableMIT. The bundled pixel font is Tom Thumb / "Fixed4x6" by Brian J. Swetland and Robey
Pointer (MIT), vendored as scripts/tom-thumb.bdf. This project is not affiliated with
Tidbyt (the company) or the Tronbyt project.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/tronbyt-mcp)<a href="https://allmcps.com/mcp/tronbyt-mcp"><img src="https://allmcps.com/api/badge/tronbyt-mcp?style=directory" alt="Tronbyt MCP on AllMCPs" /></a>